Update of /cvsroot/beepcore-java/beepcore-java/tls/org/beepcore/beep/profile/tls/jsse
In directory usw-pr-cvs1:/tmp/cvs-serv3476/org/beepcore/beep/profile/tls/jsse
Modified Files:
TLSProfileJSSE.java
Log Message:
javadoc fixes
Index: TLSProfileJSSE.java
===================================================================
RCS file: /cvsroot/beepcore-java/beepcore-java/tls/org/beepcore/beep/profile/tls/jsse/TLSProfileJSSE.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** TLSProfileJSSE.java 9 Nov 2001 18:41:23 -0000 1.5
--- TLSProfileJSSE.java 7 Sep 2002 15:13:12 -0000 1.6
***************
*** 140,143 ****
--- 140,144 ----
public void handshakeCompleted(HandshakeCompletedEvent event)
{
+ Log.logEntry(Log.SEV_DEBUG, "HandshakeCompleted");
synchronized (handshakeListeners) {
Iterator i = TLSProfileJSSE.handshakeListeners.iterator();
***************
*** 593,596 ****
--- 594,598 ----
if ((data == null)
|| (!data.equals(PROCEED1) &&!data.equals(PROCEED2))) {
+ Log.logEntry(Log.SEV_ERROR, "Invalid reply: " + data);
throw new BEEPException(ERR_EXPECTED_PROCEED);
}
***************
*** 617,621 ****
--- 619,625 ----
l.session = session;
+ Log.logEntry(Log.SEV_DEBUG, "Handshake starting");
newSocket.startHandshake();
+ Log.logEntry(Log.SEV_DEBUG, "Handshake returned");
synchronized (l) {
***************
*** 628,631 ****
--- 632,636 ----
}
}
+ Log.logEntry(Log.SEV_DEBUG, "Handshake done waiting");
} catch (javax.net.ssl.SSLException e) {
Log.logEntry(Log.SEV_ERROR, e);
***************
*** 662,666 ****
* negotiation is complete.
*
- * @return
*/
public static SessionCredential generateCredential()
--- 667,670 ----
|