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
commitd729c6d573f591d9599a09ff0dd1e9a00eff48e0 (patch)
treecc2344e7c39b72a902e7dd1755965a4370924410
parentd08159de660b48c224900e621801483c326f6972 (diff)
downloadATCD-d729c6d573f591d9599a09ff0dd1e9a00eff48e0.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;
}