Searched refs:SSL_want (Results 1 – 2 of 2) sorted by relevance
3197 OPENSSL_EXPORT int SSL_want(const SSL *ssl);3199 #define SSL_want_nothing(ssl) (SSL_want(ssl) == SSL_NOTHING)3200 #define SSL_want_read(ssl) (SSL_want(ssl) == SSL_READING)3201 #define SSL_want_write(ssl) (SSL_want(ssl) == SSL_WRITING)3202 #define SSL_want_x509_lookup(ssl) (SSL_want(ssl) == SSL_X509_LOOKUP)3203 #define SSL_want_channel_id_lookup(ssl) (SSL_want(ssl) == SSL_CHANNEL_ID_LOOKUP)3204 #define SSL_want_session(ssl) (SSL_want(ssl) == SSL_PENDING_SESSION)3206 (SSL_want(ssl) == SSL_CERTIFICATE_SELECTION_PENDING)3208 (SSL_want(ssl) == SSL_PRIVATE_KEY_OPERATION)
2050 int SSL_want(const SSL *ssl) { return ssl->rwstate; } in SSL_want() function