Home
last modified time | relevance | path

Searched refs:BIO_get_ktls_send (Results 1 – 16 of 16) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DBIO_ctrl.pod8 BIO_get_info_callback, BIO_set_info_callback, BIO_info_cb, BIO_get_ktls_send,
38 int BIO_get_ktls_send(BIO *b);
79 BIO_get_ktls_send() returns 1 if the BIO is using the Kernel TLS data-path for
107 BIO_get_ktls_send() returns 1 if the BIO is using the Kernel TLS data-path for
149 The BIO_get_ktls_send() and BIO_get_ktls_recv() macros were added in
H A DSSL_write.pod24 Kernel TLS is enabled, which can be checked by calling BIO_get_ktls_send().
/freebsd/crypto/openssl/ssl/record/
H A Drec_layer_s3.c454 && BIO_get_ktls_send(s->wbio) == 0 in ssl3_write_bytes()
780 if (BIO_get_ktls_send(s->wbio)) { in do_ssl3_write()
909 if (!BIO_get_ktls_send(s->wbio) in do_ssl3_write()
941 if (BIO_get_ktls_send(s->wbio)) { in do_ssl3_write()
953 && !BIO_get_ktls_send(s->wbio) in do_ssl3_write()
1008 if (!BIO_get_ktls_send(s->wbio) && !SSL_WRITE_ETM(s) && mac_size != 0) { in do_ssl3_write()
1024 if (!BIO_get_ktls_send(s->wbio)) { in do_ssl3_write()
1057 if (!BIO_get_ktls_send(s->wbio)) { in do_ssl3_write()
1074 if (BIO_get_ktls_send(s->wbio)) in do_ssl3_write()
1210 if (BIO_get_ktls_send( in ssl3_write_pending()
[all...]
H A Dssl3_buffer.c128 if (s->wbio == NULL || !BIO_get_ktls_send(s->wbio)) { in ssl3_setup_write_buffer()
/freebsd/crypto/openssl/test/
H A Dssl_old_test.c2161 if (BIO_get_ktls_send(SSL_get_wbio(s_ssl)) in doit_localhost()
2164 else if (BIO_get_ktls_send(SSL_get_wbio(s_ssl))) in doit_localhost()
2169 if (BIO_get_ktls_send(SSL_get_wbio(c_ssl)) in doit_localhost()
2172 else if (BIO_get_ktls_send(SSL_get_wbio(c_ssl))) in doit_localhost()
H A Dsslapitest.c1119 if (!BIO_get_ktls_send(clientssl->wbio)) { in ping_pong_query()
1129 if (!BIO_get_ktls_send(serverssl->wbio)) { in ping_pong_query()
1227 if (!TEST_false(BIO_get_ktls_send(clientssl->wbio))) in execute_test_ktls()
1230 if (BIO_get_ktls_send(clientssl->wbio)) in execute_test_ktls()
1235 if (!TEST_false(BIO_get_ktls_send(serverssl->wbio))) in execute_test_ktls()
1238 if (BIO_get_ktls_send(serverssl->wbio)) in execute_test_ktls()
1251 if (BIO_get_ktls_send(clientssl->rbio)) in execute_test_ktls()
1259 if (BIO_get_ktls_send(serverssl->rbio)) in execute_test_ktls()
1354 if (!BIO_get_ktls_send(serverssl->wbio)) { in execute_test_ktls_sendfile()
/freebsd/crypto/openssl/include/openssl/
H A Dbio.h175 # define BIO_get_ktls_send(b) \ macro
180 # define BIO_get_ktls_send(b) (0)
H A Dbio.h.in176 # define BIO_get_ktls_send(b) \ macro
181 # define BIO_get_ktls_send(b) (0)
/freebsd/usr.sbin/rpc.tlsclntd/
H A Drpc.tlsclntd.c725 ret = BIO_get_ktls_send(SSL_get_wbio(ssl)); in rpctls_connect()
/freebsd/crypto/openssl/util/
H A Dother.syms174 BIO_get_ktls_send define
/freebsd/usr.sbin/rpc.tlsservd/
H A Drpc.tlsservd.c878 ret = BIO_get_ktls_send(SSL_get_wbio(ssl)); in rpctls_server()
/freebsd/crypto/openssl/ssl/
H A Dt1_enc.c429 if ((BIO_get_ktls_send(s->wbio) && (which & SSL3_CC_WRITE)) || in tls1_change_cipher_state()
H A Dssl_lib.c2099 if (!BIO_get_ktls_send(s->wbio)) { in SSL_sendfile()
2409 if (s->wbio != NULL && BIO_get_ktls_send(s->wbio)) in SSL_ctrl()
4763 if (b == NULL || !BIO_get_ktls_send(b)) { in SSL_set_record_padding_callback()
/freebsd/crypto/openssl/apps/
H A Ds_server.c3029 if (BIO_get_ktls_send(SSL_get_wbio(con))) in print_connection_info()
3390 if (use_sendfile_for_req && !BIO_get_ktls_send(SSL_get_wbio(con))) { in www_body()
H A Ds_client.c3258 if (BIO_get_ktls_send(SSL_get_wbio(s))) in print_stuff()
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile820 MLINKS+= BIO_ctrl.3 BIO_get_ktls_send.3