Home
last modified time | relevance | path

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

/dragonfly/crypto/libressl/include/openssl/
H A Dssl.h721 #define SSL_get_state(a) (SSL_state((a)))
722 #define SSL_is_init_finished(a) (SSL_state((a)) == SSL_ST_OK)
723 #define SSL_in_init(a) (SSL_state((a))&SSL_ST_INIT)
724 #define SSL_in_before(a) (SSL_state((a))&SSL_ST_BEFORE)
725 #define SSL_in_connect_init(a) (SSL_state((a))&SSL_ST_CONNECT)
726 #define SSL_in_accept_init(a) (SSL_state((a))&SSL_ST_ACCEPT)
1430 int SSL_state(const SSL *ssl);
/dragonfly/crypto/libressl/ssl/
H A Dssl_lib.c3169 SSL_state(const SSL *ssl) in SSL_state() function