Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DSSL_want.pod5 SSL_want, SSL_want_nothing, SSL_want_read, SSL_want_write, SSL_want_x509_lookup,
13 int SSL_want(const SSL *ssl);
24 SSL_want() returns state information for the SSL object B<ssl>.
27 by SSL_want().
31 SSL_want() examines the internal state information of the SSL object. Its
39 The result returned by SSL_want() should always be consistent with
44 The following return values can currently occur for SSL_want():
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DSSL_want.pod5 SSL_want, SSL_want_nothing, SSL_want_read, SSL_want_write,
13 int SSL_want(const SSL *ssl);
25 SSL_want() returns state information for the SSL object B<ssl>.
28 by SSL_want().
32 SSL_want() examines the internal state information of the SSL object. Its
40 The result returned by SSL_want() should always be consistent with
45 The following return values can currently occur for SSL_want():
/netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Dssl.h901 # define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING)
902 # define SSL_want_read(s) (SSL_want(s) == SSL_READING)
903 # define SSL_want_write(s) (SSL_want(s) == SSL_WRITING)
904 # define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP)
905 # define SSL_want_async(s) (SSL_want(s) == SSL_ASYNC_PAUSED)
906 # define SSL_want_async_job(s) (SSL_want(s) == SSL_ASYNC_NO_JOBS)
907 # define SSL_want_client_hello_cb(s) (SSL_want(s) == SSL_CLIENT_HELLO_CB)
1521 __owur int SSL_want(const SSL *s);
/netbsd-src/crypto/external/bsd/openssl.old/lib/libssl/
H A Dssl.map387 SSL_want;
/netbsd-src/crypto/external/bsd/openssl/lib/libssl/
H A Dssl.map502 SSL_want;
/netbsd-src/crypto/external/bsd/openssl.old/lib/libcrypto/
H A Dman.inc417 SSL_want.3 \
/netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/
H A Dssl.h.in894 # define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING)
895 # define SSL_want_read(s) (SSL_want(s) == SSL_READING)
896 # define SSL_want_write(s) (SSL_want(s) == SSL_WRITING)
897 # define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP)
898 # define SSL_want_retry_verify(s) (SSL_want(s) == SSL_RETRY_VERIFY)
899 # define SSL_want_async(s) (SSL_want(s) == SSL_ASYNC_PAUSED)
900 # define SSL_want_async_job(s) (SSL_want(s) == SSL_ASYNC_NO_JOBS)
901 # define SSL_want_client_hello_cb(s) (SSL_want(s) == SSL_CLIENT_HELLO_CB)
1541 __owur int SSL_want(const SSL *s);
/netbsd-src/crypto/external/bsd/openssl/lib/libcrypto/
H A Dman.inc642 SSL_want.3 \
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man7/
H A Dssl.pod717 =item int B<SSL_want>(const SSL *ssl);
815 L<SSL_want(3)>,
/netbsd-src/crypto/external/bsd/openssl.old/dist/util/
H A Dlibssl.num36 SSL_want 37 1_1_0 EXIST::FUNCTION:
/netbsd-src/crypto/external/bsd/openssl/dist/util/
H A Dlibssl.num36 SSL_want 37 3_0_0 EXIST::FUNCTION:
/netbsd-src/crypto/external/bsd/openssl/dist/doc/
H A Dbuild.info2622 DEPEND[html/man3/SSL_want.html]=man3/SSL_want.pod
2623 GENERATE[html/man3/SSL_want.html]=man3/SSL_want.pod
2624 DEPEND[man/man3/SSL_want.3]=man3/SSL_want.pod
2625 GENERATE[man/man3/SSL_want.3]=man3/SSL_want.pod
3441 html/man3/SSL_want.html \
4049 man/man3/SSL_want.3 \
/netbsd-src/crypto/external/bsd/openssl.old/dist/ssl/
H A Dssl_lib.c4307 int SSL_want(const SSL *s) in SSL_want() function