Searched refs:SSL_want (Results 1 – 2 of 2) sorted by relevance
3927 OPENSSL_EXPORT int SSL_want(const SSL *ssl);3929 #define SSL_want_read(ssl) (SSL_want(ssl) == SSL_READING)3930 #define SSL_want_write(ssl) (SSL_want(ssl) == SSL_WRITING)
2345 int SSL_want(const SSL *ssl) { return ssl->s3->rwstate; } in SSL_want() function