Home
last modified time | relevance | path

Searched refs:SSL_net_write_desired (Results 1 – 24 of 24) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DSSL_get_rpoll_descriptor.pod6 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 DSSL_new_listener.pod61 L<SSL_net_write_desired(3)>;
/freebsd/crypto/openssl/doc/designs/ddd/
H A DREPORT.md111 `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 Dddd-02-conn-nonblocking-threads.c219 | (SSL_net_write_desired(conn->ssl) ? POLLOUT : 0) in get_conn_pending_tx()
H A Dddd-02-conn-nonblocking.c231 | (SSL_net_write_desired(conn->ssl) ? POLLOUT : 0) in get_conn_pending_tx()
H A Dddd-04-fd-nonblocking.c202 | (SSL_net_write_desired(conn->ssl) ? POLLOUT : 0) in get_conn_pending_tx()
H A Dddd-05-mem-nonblocking.c248 | (SSL_net_write_desired(conn->ssl) ? POLLOUT : 0)
/freebsd/crypto/openssl/demos/guide/
H A Dquic-client-non-block.c129 if (SSL_net_write_desired(ssl)) in wait_for_activity()
H A Dquic-server-non-block.c226 if (SSL_net_write_desired(ssl)) in wait_for_activity()
/freebsd/crypto/openssl/ssl/rio/
H A Dpoll_immediate.c82 if (SSL_net_write_desired(ssl)) { in poll_translate_ssl_quic()
/freebsd/secure/lib/libssl/
H A DVersion.map606 SSL_net_write_desired;
/freebsd/crypto/openssl/doc/man7/
H A Dopenssl-quic.pod225 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 Dossl-guide-quic-client-non-block.pod90 if (SSL_net_write_desired(ssl))
140 L<SSL_net_write_desired(3)> functions.
H A Dossl-guide-quic-server-non-block.pod253 if (SSL_net_write_desired(ssl))
/freebsd/crypto/openssl/test/quic-openssl-docker/hq-interop/
H A Dquic-hq-interop.c226 if (SSL_net_write_desired(ssl)) in wait_for_activity()
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dquic-api.md37 … - [`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 Dquic-api-ssl-funcs.md633 | `SSL_net_write_desired` | CSSM | ��N | ��A | ��QSA | ��Done …
/freebsd/crypto/openssl/demos/http3/
H A Dossl-nghttp3-demo-server.c1005 if (SSL_net_write_desired(ssl)) in wait_for_activity()
/freebsd/crypto/openssl/util/
H A Dlibssl.num540 SSL_net_write_desired 541 3_2_0 EXIST::FUNCTION:
/freebsd/crypto/openssl/apps/
H A Ds_client.c3014 || (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 Dssl.h2350 __owur int SSL_net_write_desired(SSL *s);
H A Dssl.h.in2303 __owur int SSL_net_write_desired(SSL *s);
/freebsd/crypto/openssl/test/
H A Dsslapitest.c6935 || !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 Dssl_lib.c7706 int SSL_net_write_desired(SSL *s) in SSL_net_write_desired() function