Searched refs:wbio (Results 1 - 16 of 16) sorted by relevance

/freebsd-13-stable/crypto/openssl/ssl/
H A Dd1_lib.c456 BIO *rbio, *wbio; local
472 wbio = SSL_get_wbio(s);
474 if (!rbio || !wbio) {
791 * This is unnecessary if rbio and wbio are one and the same - but
796 (void)BIO_dgram_set_peer(wbio, tmpclient);
802 if (BIO_write(wbio, wbuf, wreclen) < (int)wreclen) {
803 if (BIO_should_retry(wbio)) {
813 if (BIO_flush(wbio) <= 0) {
814 if (BIO_should_retry(wbio)) {
872 BIO *wbio; local
[all...]
H A Dd1_msg.c55 (void)BIO_flush(s->wbio);
H A Ds3_msg.c87 (void)BIO_flush(s->wbio);
H A Dssl_lib.c1169 BIO_free_all(s->wbio);
1170 s->wbio = NULL;
1252 void SSL_set0_wbio(SSL *s, BIO *wbio) argument
1258 s->wbio = BIO_pop(s->wbio);
1260 BIO_free_all(s->wbio);
1261 s->wbio = wbio;
1263 /* Re-attach |bbio| to the new |wbio|. */
1265 s->wbio
1268 SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio) argument
1414 BIO *wbio = SSL_get_wbio(s); local
[all...]
H A Dbio_ssl.c315 ret = BIO_ctrl(ssl->wbio, cmd, num, ptr);
324 ret = BIO_ctrl(ssl->wbio, cmd, num, ptr);
H A Dt1_enc.c381 bio = s->wbio;
398 if ((BIO_get_ktls_send(s->wbio) && (which & SSL3_CC_WRITE)) ||
H A Dtls13_enc.c743 bio = s->wbio;
H A Dssl_local.h1085 BIO *wbio; member in struct:ssl_st
/freebsd-13-stable/crypto/openssl/apps/
H A Denc.c98 NULL, *wbio = NULL; local
381 wbio = out;
392 wbio = BIO_push(bzl, wbio);
408 wbio = BIO_push(b64, wbio);
442 && (BIO_write(wbio, magic,
444 || BIO_write(wbio,
588 wbio = BIO_push(benc, wbio);
[all...]
H A Ds_server.c2755 BIO *wbio; local
2759 wbio = SSL_get_wbio(con);
2760 if (wbio) {
2761 BIO_get_fd(wbio, &fd);
2764 if (!wbio || BIO_connect(fd, client, 0) == 0) {
2770 (void)BIO_ctrl_set_connected(wbio, client);
/freebsd-13-stable/crypto/openssl/ssl/record/
H A Dssl3_buffer.c120 if (s->wbio == NULL || !BIO_get_ktls_send(s->wbio)) {
H A Drec_layer_s3.c429 (BIO_get_ktls_send(s->wbio) == 0) &&
532 if (i < 0 && (!s->wbio || !BIO_should_retry(s->wbio))) {
759 if (BIO_get_ktls_send(s->wbio)) {
888 if (!BIO_get_ktls_send(s->wbio)
922 if (BIO_get_ktls_send(s->wbio)) {
935 && !BIO_get_ktls_send(s->wbio)
991 if (!BIO_get_ktls_send(s->wbio) && !SSL_WRITE_ETM(s) && mac_size != 0) {
1007 if (!BIO_get_ktls_send(s->wbio)) {
1042 if (!BIO_get_ktls_send(s->wbio)) {
[all...]
/freebsd-13-stable/contrib/libevent/
H A Dbufferevent_openssl.c549 BIO *rbio, *wbio; local
551 wbio = SSL_get_wbio(bev_ssl->ssl);
552 bev_ssl->counts.n_written = wbio ? BIO_number_written(wbio) : 0;
/freebsd-13-stable/crypto/openssl/ssl/statem/
H A Dstatem_dtls.c188 used_len = BIO_wpending(s->wbio) + DTLS1_RT_HEADER_LENGTH
199 ret = BIO_flush(s->wbio);
1167 (void)BIO_flush(s->wbio);
H A Dstatem.c903 if (BIO_flush(s->wbio) <= 0) {
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dssl.h1552 void SSL_set0_wbio(SSL *s, BIO *wbio);
1553 void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio);

Completed in 199 milliseconds