[Beepcore-java-commits] CVS: beepcore-java/src/org/beepcore/beep/core Session.java,1.29,1.30
Status: Beta
Brought to you by:
huston
|
From: Kevin K. <ki...@us...> - 2002-09-05 23:03:55
|
Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core
In directory usw-pr-cvs1:/tmp/cvs-serv27687
Modified Files:
Session.java
Log Message:
Fix for bug 589436. Greeting will now timeout.
Index: Session.java
===================================================================
RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/Session.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** Session.java 22 Aug 2002 18:09:34 -0000 1.29
--- Session.java 5 Sep 2002 23:03:51 -0000 1.30
***************
*** 4,7 ****
--- 4,8 ----
* Copyright (c) 2001 Invisible Worlds, Inc. All rights reserved.
* Copyright (c) 2001 Huston Franklin. All rights reserved.
+ * Copyright (c) 2002 Kevin Kress. All rights reserved.
*
* The contents of this file are subject to the Blocks Public License (the
***************
*** 197,201 ****
//zero.wait(MAX_START_CHANNEL_INTERVAL);
! greetingListener.wait(0);
waitCount += MAX_START_CHANNEL_INTERVAL;
--- 198,202 ----
//zero.wait(MAX_START_CHANNEL_INTERVAL);
! greetingListener.wait(MAX_START_CHANNEL_INTERVAL);
waitCount += MAX_START_CHANNEL_INTERVAL;
|