Home
last modified time | relevance | path

Searched refs:SSL_want (Results 1 – 2 of 2) sorted by relevance

/external/boringssl/src/include/openssl/
Dssl.h3927 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)
/external/boringssl/src/ssl/
Dssl_lib.cc2345 int SSL_want(const SSL *ssl) { return ssl->s3->rwstate; } in SSL_want() function