Searched refs:SSL_want (Results 1 – 12 of 12) sorted by relevance
/openssl/doc/man3/ |
H A D | SSL_want.pod | 5 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>. B<ssl> B<MUST NOT> be NULL. 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():
|
/openssl/include/openssl/ |
H A D | ssl.h.in | 914 # define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING) 915 # define SSL_want_read(s) (SSL_want(s) == SSL_READING) 916 # define SSL_want_write(s) (SSL_want(s) == SSL_WRITING) 917 # define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP) 918 # define SSL_want_retry_verify(s) (SSL_want(s) == SSL_RETRY_VERIFY) 919 # define SSL_want_async(s) (SSL_want(s) == SSL_ASYNC_PAUSED) 920 # define SSL_want_async_job(s) (SSL_want(s) == SSL_ASYNC_NO_JOBS) 921 # define SSL_want_client_hello_cb(s) (SSL_want(s) == SSL_CLIENT_HELLO_CB) 1569 __owur int SSL_want(const SSL *s);
|
/openssl/doc/designs/quic-design/ |
H A D | quic-api.md | 38 … - [`SSL_want`, `SSL_want_read`, `SSL_want_write`](#-ssl-want----ssl-want-read----ssl-want-write-) 510 replacement for `SSL_want` 512 #### `SSL_want`, `SSL_want_read`, `SSL_want_write` 514 The existing API `SSL_want`, and the macros defined in terms of it, are 518 return value of `SSL_want` can only express one I/O direction at a time (read or
|
H A D | quic-api-ssl-funcs.md | 618 | `SSL_want` | ADP | C | A | QSI | Done …
|
/openssl/doc/man7/ |
H A D | openssl-quic.pod | 210 L<SSL_want(3)>, L<SSL_want_read(3)> and L<SSL_want_write(3)> no longer reflect 432 Ensure that your usage of L<SSL_want(3)>, L<SSL_want_read(3)> and
|
/openssl/util/ |
H A D | libssl.num | 36 SSL_want 37 3_0_0 EXIST::FUNCTION:
|
/openssl/test/ |
H A D | quic_multistream_test.c | 1004 int w = SSL_want(s); in check_consistent_want() 1445 if (!TEST_int_eq(SSL_want(c_tgt), SSL_NOTHING)) in run_script_worker() 1909 if (!TEST_int_eq(SSL_want(c_tgt), SSL_NOTHING)) in run_script_worker()
|
H A D | quicapitest.c | 1132 || !TEST_int_eq(SSL_want(clientquic), SSL_RETRY_VERIFY)) in test_non_io_retry()
|
H A D | sslapitest.c | 6863 || !TEST_int_eq(SSL_want(peerwrite), SSL_NOTHING)) in test_key_update_peer_in_write()
|
/openssl/doc/ |
H A D | build.info | 2818 DEPEND[html/man3/SSL_want.html]=man3/SSL_want.pod 2819 GENERATE[html/man3/SSL_want.html]=man3/SSL_want.pod 2820 DEPEND[man/man3/SSL_want.3]=man3/SSL_want.pod 2821 GENERATE[man/man3/SSL_want.3]=man3/SSL_want.pod 3714 html/man3/SSL_want.html \ 4378 man/man3/SSL_want.3 \
|
/openssl/ssl/quic/ |
H A D | quic_impl.c | 1461 int want = SSL_want(qc->tls); in tls_wants_non_io_retry()
|
/openssl/ssl/ |
H A D | ssl_lib.c | 5655 int SSL_want(const SSL *s) in SSL_want() function
|
Completed in 112 milliseconds