Home
last modified time | relevance | path

Searched refs:BIO_do_connect (Results 1 – 12 of 12) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DBIO_s_connect.pod10 BIO_set_nbio, BIO_do_connect - connect BIO
31 long BIO_do_connect(BIO *b);
93 BIO_do_connect() attempts to connect the supplied BIO.
122 Applications do not have to call BIO_do_connect() but may wish to do
137 BIO_set_nbio(), and BIO_do_connect() are macros.
161 BIO_do_connect() returns 1 if the connection was successfully
176 if (BIO_do_connect(cbio) <= 0) {
H A DBIO_socket_wait.pod35 It retries BIO_do_connect() as far as needed to reach a definite outcome,
43 while a value < 0 means that BIO_do_connect() is tried only once.
53 L<BIO_do_connect(3)>, L<BIO_read(3)>
H A DBIO_f_ssl.pod182 if (BIO_do_connect(sbio) <= 0) {
/freebsd/crypto/openssl/demos/bio/
H A Dclient-arg.c88 if (BIO_do_connect(sbio) <= 0) { in main()
H A Dclient-conf.c96 if (BIO_do_connect(sbio) <= 0) { in main()
/freebsd/crypto/openssl/crypto/bio/
H A Dbio_lib.c916 * Connect via given BIO using BIO_do_connect() until success/timeout/error.
940 rv = BIO_do_connect(bio); in BIO_do_connect_retry()
/freebsd/crypto/openssl/util/
H A Dother.syms158 BIO_do_connect define
/freebsd/crypto/openssl/include/openssl/
H A Dbio.h481 # define BIO_do_connect(b) BIO_do_handshake(b) macro
H A Dbio.h.in458 # define BIO_do_connect(b) BIO_do_handshake(b) macro
/freebsd/crypto/openssl/test/
H A Dssl_old_test.c1957 if (BIO_do_connect(client) <= 0) { in doit_localhost()
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile790 MLINKS+= BIO_s_connect.3 BIO_do_connect.3
/freebsd/crypto/openssl/
H A DCHANGES.md1663 * `BIO_do_connect()` and `BIO_do_handshake()` have been extended: