Home
last modified time | relevance | path

Searched refs:fbio (Results 1 – 2 of 2) sorted by relevance

/third_party/openssl/apps/
Ds_client.c2180 BIO *fbio = BIO_new(BIO_f_buffer()); in s_client_main() local
2182 if (fbio == NULL) { in s_client_main()
2186 BIO_push(fbio, sbio); in s_client_main()
2189 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2194 BIO_printf(fbio, "LHLO %s\r\n", protohost); in s_client_main()
2196 BIO_printf(fbio, "EHLO %s\r\n", protohost); in s_client_main()
2197 (void)BIO_flush(fbio); in s_client_main()
2203 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2207 (void)BIO_flush(fbio); in s_client_main()
2208 BIO_pop(fbio); in s_client_main()
[all …]
/third_party/openssl/crypto/http/
Dhttp_client.c1290 BIO *fbio = BIO_new(BIO_f_buffer()); in OSSL_HTTP_proxy_connect() local
1302 if (mbuf == NULL || fbio == NULL) { in OSSL_HTTP_proxy_connect()
1306 BIO_push(fbio, bio); in OSSL_HTTP_proxy_connect()
1308 BIO_printf(fbio, "CONNECT %s:%s "HTTP_1_0"\r\n", server, port); in OSSL_HTTP_proxy_connect()
1314 BIO_printf(fbio, "Proxy-Connection: Keep-Alive\r\n"); in OSSL_HTTP_proxy_connect()
1331 BIO_printf(fbio, "Proxy-Authorization: Basic %s\r\n", proxyauthenc); in OSSL_HTTP_proxy_connect()
1341 BIO_printf(fbio, "\r\n"); in OSSL_HTTP_proxy_connect()
1344 if (BIO_flush(fbio) != 0) in OSSL_HTTP_proxy_connect()
1347 if (!BIO_should_retry(fbio)) in OSSL_HTTP_proxy_connect()
1353 rv = BIO_wait(fbio, max_time, 100 /* milliseconds */); in OSSL_HTTP_proxy_connect()
[all …]