You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2009/10/07 22:13:07 UTC

svn commit: r822892 - /apr/apr/trunk/include/apr_network_io.h

Author: rpluem
Date: Wed Oct  7 20:13:06 2009
New Revision: 822892

URL: http://svn.apache.org/viewvc?rev=822892&view=rev
Log:
* Improve the documentation even further

Reviewed by: jim

Modified:
    apr/apr/trunk/include/apr_network_io.h

Modified: apr/apr/trunk/include/apr_network_io.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_network_io.h?rev=822892&r1=822891&r2=822892&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_network_io.h (original)
+++ apr/apr/trunk/include/apr_network_io.h Wed Oct  7 20:13:06 2009
@@ -375,9 +375,9 @@
                                              apr_sockaddr_t *sa);
 
 /**
- * Check whether the receive part of the socket has been shut down by the
- * peer and that the socket's read buffer is empty. If this is true the next
- * read on the socket wil return APR_EOF.
+ * Check whether the send part of the socket is still open on the
+ * peer or that there is still data in the socket's read buffer.
+ * If this is false the next read on the socket will return APR_EOF.
  * @param socket The socket to check
  * @remark
  * <PRE>