Lines Matching refs:fbio
1295 BIO *fbio = BIO_new(BIO_f_buffer());
1307 if (mbuf == NULL || fbio == NULL) {
1311 BIO_push(fbio, bio);
1313 BIO_printf(fbio, "CONNECT %s:%s "HTTP_1_0"\r\n", server, port);
1319 BIO_printf(fbio, "Proxy-Connection: Keep-Alive\r\n");
1336 BIO_printf(fbio, "Proxy-Authorization: Basic %s\r\n", proxyauthenc);
1346 BIO_printf(fbio, "\r\n");
1349 if (BIO_flush(fbio) != 0)
1352 if (!BIO_should_retry(fbio))
1358 rv = BIO_wait(fbio, max_time, 100 /* milliseconds */);
1370 read_len = BIO_gets(fbio, mbuf, BUF_SIZE);
1415 read_len = BIO_gets(fbio, mbuf, BUF_SIZE);
1419 if (fbio != NULL) {
1420 (void)BIO_flush(fbio);
1421 BIO_pop(fbio);
1422 BIO_free(fbio);