[Beepcore-java-commits] CVS: beepcore-java/example/org/beepcore/beep/example Bing.java,1.6,1.7
Status: Beta
Brought to you by:
huston
From: Huston F. <hu...@us...> - 2001-11-08 03:59:40
|
Update of /cvsroot/beepcore-java/beepcore-java/example/org/beepcore/beep/example In directory usw-pr-cvs1:/tmp/cvs-serv21487/example/org/beepcore/beep/example Modified Files: Bing.java Log Message: Made ProfileRegistry optional for TCPSessionCreator.initiate() Index: Bing.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/example/org/beepcore/beep/example/Bing.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Bing.java 2001/10/31 16:15:47 1.6 --- Bing.java 2001/11/08 03:59:37 1.7 *************** *** 62,69 **** Session session; try { ! // a empty ProfileRegistry is used since this application ! // isn't intended to listen for start channel requests. ! session = TCPSessionCreator.initiate(host, port, ! new ProfileRegistry()); } catch (BEEPException e) { System.err.println("bing: Error connecting to " + host + ":" + --- 62,66 ---- Session session; try { ! session = TCPSessionCreator.initiate(host, port); } catch (BEEPException e) { System.err.println("bing: Error connecting to " + host + ":" + |