/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_get_rpoll_descriptor.pod | 6 SSL_net_write_desired - obtain information which can be used to determine when 16 int SSL_net_write_desired(SSL *s); 28 The functions SSL_net_read_desired() and SSL_net_write_desired() return 1 or 0 34 SSL_net_write_desired() will return 0. 58 If the last call to SSL_net_write_desired() returned 1, SSL_handle_events() should be called 64 The return values of the SSL_net_read_desired() and SSL_net_write_desired() functions 66 SSL_net_read_desired(), SSL_net_write_desired(), SSL_get_rpoll_descriptor(), 75 SSL_net_write_desired() function identically to calls to SSL_want_read() and 89 and SSL_net_write_desired() functions were added in OpenSSL 3.2.
|
H A D | SSL_new_listener.pod | 61 L<SSL_net_write_desired(3)>;
|
/freebsd/crypto/openssl/doc/designs/ddd/ |
H A D | REPORT.md | 111 `SSL_net_write_desired`. 169 - Use of `SSL_net_read_desired` and `SSL_net_write_desired` (as for 233 `SSL_net_write_desired` (as for ddd-02-conn-nonblocking). 270 - Use of `SSL_net_read_desired` and `SSL_net_write_desired` (as for
|
H A D | ddd-02-conn-nonblocking-threads.c | 219 | (SSL_net_write_desired(conn->ssl) ? POLLOUT : 0) in get_conn_pending_tx()
|
H A D | ddd-02-conn-nonblocking.c | 231 | (SSL_net_write_desired(conn->ssl) ? POLLOUT : 0) in get_conn_pending_tx()
|
H A D | ddd-04-fd-nonblocking.c | 202 | (SSL_net_write_desired(conn->ssl) ? POLLOUT : 0) in get_conn_pending_tx()
|
H A D | ddd-05-mem-nonblocking.c | 248 | (SSL_net_write_desired(conn->ssl) ? POLLOUT : 0)
|
/freebsd/crypto/openssl/demos/guide/ |
H A D | quic-client-non-block.c | 129 if (SSL_net_write_desired(ssl)) in wait_for_activity()
|
H A D | quic-server-non-block.c | 226 if (SSL_net_write_desired(ssl)) in wait_for_activity()
|
/freebsd/crypto/openssl/ssl/rio/ |
H A D | poll_immediate.c | 82 if (SSL_net_write_desired(ssl)) { in poll_translate_ssl_quic()
|
/freebsd/secure/lib/libssl/ |
H A D | Version.map | 606 SSL_net_write_desired;
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | openssl-quic.pod | 225 L<SSL_net_write_desired(3)>. Only applications which wish to manage their own event 619 L<SSL_net_read_desired(3)> and L<SSL_net_write_desired(3)> return 1, 622 =item L<SSL_net_read_desired(3)>, L<SSL_net_write_desired(3)> 848 It should call L<SSL_net_read_desired(3)> and L<SSL_net_write_desired(3)> to determine 868 (if L<SSL_net_write_desired(3)> returned 1); 901 L<SSL_net_read_desired(3)>, L<SSL_net_write_desired(3)>,
|
H A D | ossl-guide-quic-client-non-block.pod | 90 if (SSL_net_write_desired(ssl)) 140 L<SSL_net_write_desired(3)> functions.
|
H A D | ossl-guide-quic-server-non-block.pod | 253 if (SSL_net_write_desired(ssl))
|
/freebsd/crypto/openssl/test/quic-openssl-docker/hq-interop/ |
H A D | quic-hq-interop.c | 226 if (SSL_net_write_desired(ssl)) in wait_for_activity()
|
/freebsd/crypto/openssl/doc/designs/quic-design/ |
H A D | quic-api.md | 37 … - [`SSL_net_read_desired`, `SSL_net_write_desired`](#-ssl-want-net-read----ssl-want-net-write-) 486 is relevant if `SSL_net_write_desired` returns 1. 494 #### `SSL_net_read_desired`, `SSL_net_write_desired` 505 function other than `SSL_net_read_desired`, `SSL_net_write_desired`, 520 returns `SSL_NOTHING`) and `SSL_net_read_desired` and `SSL_net_write_desired`
|
H A D | quic-api-ssl-funcs.md | 633 | `SSL_net_write_desired` | CSSM | N | A | QSA | Done …
|
/freebsd/crypto/openssl/demos/http3/ |
H A D | ossl-nghttp3-demo-server.c | 1005 if (SSL_net_write_desired(ssl)) in wait_for_activity()
|
/freebsd/crypto/openssl/util/ |
H A D | libssl.num | 540 SSL_net_write_desired 541 3_2_0 EXIST::FUNCTION:
|
/freebsd/crypto/openssl/apps/ |
H A D | s_client.c | 3014 || (isquic && (first_loop || SSL_net_write_desired(con)))) in s_client_main() 3022 || (isquic && (first_loop || SSL_net_write_desired(con)))) in s_client_main()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | ssl.h | 2350 __owur int SSL_net_write_desired(SSL *s);
|
H A D | ssl.h.in | 2303 __owur int SSL_net_write_desired(SSL *s);
|
/freebsd/crypto/openssl/test/ |
H A D | sslapitest.c | 6935 || !TEST_true(SSL_net_write_desired(peerwrite))) in test_key_update_peer_in_write() 6963 || !TEST_false(SSL_net_write_desired(peerwrite)) in test_key_update_peer_in_write()
|
/freebsd/crypto/openssl/ssl/ |
H A D | ssl_lib.c | 7706 int SSL_net_write_desired(SSL *s) in SSL_net_write_desired() function
|