[Beepcore-java-commits] CVS: beepcore-java/example/org/beepcore/beep/example Bing.java,1.8,1.9
Status: Beta
Brought to you by:
huston
From: Huston F. <hu...@us...> - 2001-11-10 21:33:31
|
Update of /cvsroot/beepcore-java/beepcore-java/example/org/beepcore/beep/example In directory usw-pr-cvs1:/tmp/cvs-serv17519/example/org/beepcore/beep/example Modified Files: Bing.java Log Message: Rename Byte/StringDataStream to Byte/StringOutputDataStream Index: Bing.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/example/org/beepcore/beep/example/Bing.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** Bing.java 2001/11/08 05:51:33 1.8 --- Bing.java 2001/11/10 21:33:28 1.9 *************** *** 3,6 **** --- 3,7 ---- * * Copyright (c) 2001 Invisible Worlds, Inc. All rights reserved. + * Copyright (c) 2001 Huston Franklin. All rights reserved. * * The contents of this file are subject to the Blocks Public License (the *************** *** 27,31 **** import org.beepcore.beep.core.ProfileRegistry; import org.beepcore.beep.core.Session; ! import org.beepcore.beep.core.StringDataStream; import org.beepcore.beep.lib.Reply; import org.beepcore.beep.profile.echo.EchoProfile; --- 28,32 ---- import org.beepcore.beep.core.ProfileRegistry; import org.beepcore.beep.core.Session; ! import org.beepcore.beep.core.StringOutputDataStream; import org.beepcore.beep.lib.Reply; import org.beepcore.beep.profile.echo.EchoProfile; *************** *** 114,118 **** try { // Send the request ! channel.sendMSG(new StringDataStream(request), reply); } catch (BEEPException e) { System.err.println("bing: Error sending request (" + --- 115,120 ---- try { // Send the request ! channel.sendMSG(new StringOutputDataStream(request), ! reply); } catch (BEEPException e) { System.err.println("bing: Error sending request (" + |