Home
last modified time | relevance | path

Searched refs:SSL_poll (Results 1 – 17 of 17) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DSSL_poll.pod5 SSL_poll,
71 int SSL_poll(SSL_POLL_ITEM *items,
80 SSL_poll() allows the readiness conditions of the resources represented by one
86 A call to SSL_poll() specifies an array of B<SSL_POLL_ITEM> structures, each of
116 After SSL_poll() returns, this is the set of zero or more events which are
126 To use SSL_poll(), call it with an array of B<SSL_POLL_ITEM> structures. The
132 to use SSL_poll() in blocking or nonblocking mode:
155 The present implementation of SSL_poll() is a subset of the functionality which
178 when the call to SSL_poll() returns; see L</RETURN VALUES> for details.
182 The SSL_poll() interface reports zero or more event types on a given resource,
[all …]
H A DSSL_set_blocking_mode.pod58 L<SSL_handle_events(3)>, L<SSL_poll(3)>, L<openssl-quic(7)>,
H A DSSL_new_listener.pod139 L<SSL_poll(3)>, L<SSL_read(3)> and L<SSL_write(3)>.
/freebsd/crypto/openssl/test/radix/
H A Dquic_tests.c149 if (!TEST_true(SSL_poll(items, OSSL_NELEM(items), sizeof(SSL_POLL_ITEM), in DEF_FUNC()
337 if (!TEST_true(SSL_poll(items, OSSL_NELEM(items), sizeof(SSL_POLL_ITEM), in DEF_FUNC()
361 ok = TEST_true(SSL_poll(items, OSSL_NELEM(items), sizeof(SSL_POLL_ITEM), in DEF_FUNC()
438 if (!TEST_true(SSL_poll(&item, 1, sizeof(SSL_POLL_ITEM), in DEF_FUNC()
/freebsd/crypto/openssl/doc/designs/quic-design/server/
H A Dquic-polling.md144 Suppose there exists a hypothetical poll(2)-like API called `SSL_poll`. We
155 SSL_poll([qcso0, qcso1, qsso0, qsso1],
184 - An application calls `SSL_poll` similarly to the above example, but with
273 - **F (Failure):** Identifies failure of the `SSL_poll()` mechanism itself.
294 failure of the `SSL_poll()` mechanism itself (`SSL_poll()` returning 0).
707 Indicates that the `SSL_poll` mechanism itself has failed. This may be due to
728 `SSL_poll()` then returns 0. The ERR stack *always* has at least one entry
767 * SSL_poll
770 * SSL_poll evaluates each of the items in the given array of SSL_POLL_ITEMs
776 * SSL_poll in a blocking fashion, only the occurrence of one or more events
[all …]
/freebsd/crypto/openssl/doc/man7/
H A Dopenssl-quic-concurrency.pod130 serviced. This includes the use of L<SSL_poll(3)> in a blocking fashion.
165 on the affected domain can block indefinitely. L<SSL_poll(3)> can maintain such
173 call L<SSL_poll(3)> with a finite timeout and check a cancellation condition
351 L<SSL_get_wpoll_descriptor(3)>, L<SSL_poll(3)>,
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile577 MAN+= SSL_poll.3
4536 MLINKS+= SSL_poll.3 SSL_POLL_EVENT_E.3
4537 MLINKS+= SSL_poll.3 SSL_POLL_EVENT_EC.3
4538 MLINKS+= SSL_poll.3 SSL_POLL_EVENT_ECD.3
4539 MLINKS+= SSL_poll.3 SSL_POLL_EVENT_ER.3
4540 MLINKS+= SSL_poll.3 SSL_POLL_EVENT_EW.3
4541 MLINKS+= SSL_poll.3 SSL_POLL_EVENT_F.3
4542 MLINKS+= SSL_poll.3 SSL_POLL_EVENT_I.3
4543 MLINKS+= SSL_poll.3 SSL_POLL_EVENT_IS.3
4544 MLINKS+= SSL_poll.3 SSL_POLL_EVENT_ISB.3
[all …]
/freebsd/crypto/openssl/ssl/rio/
H A Dpoll_immediate.c437 int SSL_poll(SSL_POLL_ITEM *items, in SSL_poll() function
/freebsd/secure/lib/libssl/
H A DVersion.map612 SSL_poll;
/freebsd/crypto/openssl/test/quic-openssl-docker/hq-interop/
H A Dquic-hq-interop.c935 if (!SSL_poll(poll_list, this_poll_count, sizeof(SSL_POLL_ITEM), in main()
/freebsd/crypto/openssl/demos/http3/
H A Dossl-nghttp3-demo-server.c498 ret = SSL_poll(items, numitem, sizeof(SSL_POLL_ITEM), &nz_timeout, in read_from_ssl_ids()
/freebsd/crypto/openssl/util/
H A Dlibssl.num583 SSL_poll 584 3_3_0 EXIST::FUNCTION:
/freebsd/crypto/openssl/doc/
H A Dbuild.info2782 DEPEND[html/man3/SSL_poll.html]=man3/SSL_poll.pod
2783 GENERATE[html/man3/SSL_poll.html]=man3/SSL_poll.pod
2784 DEPEND[man/man3/SSL_poll.3]=man3/SSL_poll.pod
2785 GENERATE[man/man3/SSL_poll.3]=man3/SSL_poll.pod
3771 html/man3/SSL_poll.html \
4450 man/man3/SSL_poll.3 \
/freebsd/crypto/openssl/include/openssl/
H A Dssl.h2578 __owur int SSL_poll(SSL_POLL_ITEM *items,
H A Dssl.h.in2531 __owur int SSL_poll(SSL_POLL_ITEM *items,
/freebsd/crypto/openssl/test/
H A Dquic_multistream_test.c5614 ret = SSL_poll(items, OSSL_NELEM(items), sizeof(SSL_POLL_ITEM), in script_85_poll()
/freebsd/crypto/openssl/
H A DCHANGES.md1820 non-blocking manner. Refer to the SSL_poll(3) manpage for details.