HomeSort by: relevance | last modified time | path
    Searched defs:SSL_pending (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/ssl/
ssl_lib.c 1551 int SSL_pending(const SSL *s)
1553 size_t pending = s->method->ssl_pending(s);
1556 * SSL_pending cannot work properly if read-ahead is enabled
1558 * impossible to fix since SSL_pending cannot report errors that may be
1559 * observed while scanning the new data. (Note that SSL_pending() is
1562 * SSL_pending also cannot work properly if the value >INT_MAX. In that case
1571 * Similar to SSL_pending() but returns a 1 to indicate that we have
1573 * number of bytes available). Unlike SSL_pending() this will take into
  /src/crypto/external/bsd/openssl.old/dist/ssl/
ssl_lib.c 1492 int SSL_pending(const SSL *s)
1494 size_t pending = s->method->ssl_pending(s);
1497 * SSL_pending cannot work properly if read-ahead is enabled
1499 * impossible to fix since SSL_pending cannot report errors that may be
1500 * observed while scanning the new data. (Note that SSL_pending() is
1503 * SSL_pending also cannot work properly if the value >INT_MAX. In that case
1512 * Similar to SSL_pending() but returns a 1 to indicate that we have
1514 * number of bytes available). Unlike SSL_pending() this will take into
  /src/crypto/external/apache2/openssl/dist/ssl/
ssl_lib.c 1919 int SSL_pending(const SSL *s)
1921 size_t pending = s->method->ssl_pending(s);
1924 * SSL_pending cannot work properly if read-ahead is enabled
1926 * impossible to fix since SSL_pending cannot report errors that may be
1927 * observed while scanning the new data. (Note that SSL_pending() is
1930 * SSL_pending also cannot work properly if the value >INT_MAX. In that case
1939 * Similar to SSL_pending() but returns a 1 to indicate that we have
1941 * number of bytes available). Unlike SSL_pending() this will take into

Completed in 35 milliseconds