Home | History | Annotate | Download | only in openssl

Lines Matching refs:SSL_want

3752 /* SSL_want returns one of the above values to determine what the most recent
3754 OPENSSL_EXPORT int SSL_want(const SSL *ssl);
3756 #define SSL_want_read(ssl) (SSL_want(ssl) == SSL_READING)
3757 #define SSL_want_write(ssl) (SSL_want(ssl) == SSL_WRITING)