Searched refs:SSL_want (Results 1 – 4 of 4) sorted by relevance
5 SSL_want, SSL_want_nothing, SSL_want_read, SSL_want_write, SSL_want_x509_lookup - obtain state info…11 int SSL_want(const SSL *ssl);19 SSL_want() returns state information for the SSL object B<ssl>.22 by SSL_want().26 SSL_want() examines the internal state information of the SSL object. Its34 The result returned by SSL_want() should always be consistent with39 The following return values can currently occur for SSL_want():
641 =item int B<SSL_want>(const SSL *ssl);724 L<SSL_want(3)|SSL_want(3)>,
808 #define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING)809 #define SSL_want_read(s) (SSL_want(s) == SSL_READING)810 #define SSL_want_write(s) (SSL_want(s) == SSL_WRITING)811 #define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP)1221 int SSL_want(const SSL *s);
2497 int SSL_want(const SSL *s) in SSL_want() function