• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/crypto/openssl/apps/

Lines Matching refs:sbio

884     BIO *sbio;
2073 sbio = BIO_new_dgram_sctp(s, BIO_NOCLOSE);
2076 sbio = BIO_new_dgram(s, BIO_NOCLOSE);
2091 (void)BIO_ctrl_set_connected(sbio, peer_info.addr);
2098 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
2102 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2109 BIO_free(sbio);
2115 BIO_free(sbio);
2120 BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
2124 sbio = BIO_new_socket(s, BIO_NOCLOSE);
2130 sbio = BIO_push(test, sbio);
2134 BIO_set_callback(sbio, bio_dump_callback);
2135 BIO_set_callback_arg(sbio, (char *)bio_c_out);
2159 SSL_set_bio(con, sbio, sbio);
2196 BIO_push(fbio, sbio);
2224 BIO_printf(sbio, "STARTTLS\r\n");
2225 BIO_read(sbio, sbuf, BUFSIZZ);
2230 BIO_read(sbio, mbuf, BUFSIZZ);
2231 BIO_printf(sbio, "STLS\r\n");
2232 mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
2244 BIO_push(fbio, sbio);
2263 BIO_printf(sbio, ". STARTTLS\r\n");
2264 BIO_read(sbio, sbuf, BUFSIZZ);
2271 BIO_push(fbio, sbio);
2280 BIO_printf(sbio, "AUTH TLS\r\n");
2281 BIO_read(sbio, sbuf, BUFSIZZ);
2288 BIO_printf(sbio, "<stream:stream "
2293 seen = BIO_read(sbio, mbuf, BUFSIZZ);
2304 seen = BIO_read(sbio, mbuf, BUFSIZZ);
2311 BIO_printf(sbio,
2313 seen = BIO_read(sbio, sbuf, BUFSIZZ);
2341 bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2345 BIO_write(sbio, tls_will, 3);
2346 BIO_write(sbio, tls_follows, 6);
2347 (void)BIO_flush(sbio);
2349 bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2363 BIO_push(fbio, sbio);
2412 BIO_push(fbio, sbio);
2433 && !BIO_pending(sbio)
2493 bytes = BIO_read(sbio, (void *)packet, BUFSIZZ);
2545 BIO_write(sbio, ssl_req, sizeof(ssl_req));
2546 (void)BIO_flush(sbio);
2558 BIO_write(sbio, ssl_request, 8);
2559 (void)BIO_flush(sbio);
2562 bytes = BIO_read(sbio, sbuf, BUFSIZZ);
2572 BIO_push(fbio, sbio);
2590 BIO_printf(sbio, "STARTTLS\r\n");
2591 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2608 BIO_push(fbio, sbio);
2629 BIO_printf(sbio, "STARTTLS\r\n");
2630 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2699 BIO_write(sbio, atyp->value.sequence->data,
2701 (void)BIO_flush(sbio);
2704 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
3129 && BIO_read(sbio, sbuf, BUFSIZZ) > 0);