summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-09-07 20:39:57 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-09-07 20:39:57 +0000
commit037f90056fa1e955137a4f6b7d61492e667a4e91 (patch)
treecc2344e7c39b72a902e7dd1755965a4370924410
parent0fb2b114c070f6b86676c183957d76a3aa186ffd (diff)
downloadATCD-037f90056fa1e955137a4f6b7d61492e667a4e91.tar.gz
Added some clarifying comments.
-rw-r--r--ace/SSL/SSL_Accept_Handler.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/ace/SSL/SSL_Accept_Handler.cpp b/ace/SSL/SSL_Accept_Handler.cpp
index 87248b056b4..d7199f7f4c6 100644
--- a/ace/SSL/SSL_Accept_Handler.cpp
+++ b/ace/SSL/SSL_Accept_Handler.cpp
@@ -99,10 +99,14 @@ ACE_SSL_Accept_Handler::ssl_accept (void)
#ifndef ACE_NDEBUG
ERR_print_errors_fp (stderr);
#endif /* ACE_NDEBUG */
+
return -1;
}
}
while (::SSL_pending (this->ssl_stream_.ssl ()));
+ // Completed reading an SSL record, but SSL passive connection is
+ // still pending completion.
+
return 0;
}