Searched refs:SSL_want (Results 1 – 8 of 8) sorted by relevance
5 SSL_want, SSL_want_nothing, SSL_want_read, SSL_want_write,13 int SSL_want(const SSL *ssl);25 SSL_want() returns state information for the SSL object B<ssl>.28 by SSL_want().32 SSL_want() examines the internal state information of the SSL object. Its40 The result returned by SSL_want() should always be consistent with45 The following return values can currently occur for SSL_want():
82 int SSL_want(const SSL *ssl) in SSL_want() function99 return (SSL_want(ssl) == SSL_NOTHING); in SSL_want_nothing()112 return (SSL_want(ssl) == SSL_READING); in SSL_want_read()125 return (SSL_want(ssl) == SSL_WRITING); in SSL_want_write()135 return (SSL_want(ssl) == SSL_WRITING); in SSL_want_x509_lookup()
901 # define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING)902 # define SSL_want_read(s) (SSL_want(s) == SSL_READING)903 # define SSL_want_write(s) (SSL_want(s) == SSL_WRITING)904 # define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP)905 # define SSL_want_async(s) (SSL_want(s) == SSL_ASYNC_PAUSED)906 # define SSL_want_async_job(s) (SSL_want(s) == SSL_ASYNC_NO_JOBS)907 # define SSL_want_client_hello_cb(s) (SSL_want(s) == SSL_CLIENT_HELLO_CB)1511 __owur int SSL_want(const SSL *s);
840 int SSL_want(const SSL *ssl);
894 # define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING)895 # define SSL_want_read(s) (SSL_want(s) == SSL_READING)896 # define SSL_want_write(s) (SSL_want(s) == SSL_WRITING)897 # define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP)898 # define SSL_want_retry_verify(s) (SSL_want(s) == SSL_RETRY_VERIFY)899 # define SSL_want_async(s) (SSL_want(s) == SSL_ASYNC_PAUSED)900 # define SSL_want_async_job(s) (SSL_want(s) == SSL_ASYNC_NO_JOBS)901 # define SSL_want_client_hello_cb(s) (SSL_want(s) == SSL_CLIENT_HELLO_CB)1541 __owur int SSL_want(const SSL *s);
36 SSL_want 37 3_0_0 EXIST::FUNCTION:
2586 DEPEND[html/man3/SSL_want.html]=man3/SSL_want.pod2587 GENERATE[html/man3/SSL_want.html]=man3/SSL_want.pod2588 DEPEND[man/man3/SSL_want.3]=man3/SSL_want.pod2589 GENERATE[man/man3/SSL_want.3]=man3/SSL_want.pod3384 html/man3/SSL_want.html \3980 man/man3/SSL_want.3 \
4559 int SSL_want(const SSL *s) in SSL_want() function