Lines Matching refs:fbio

2180             BIO *fbio = BIO_new(BIO_f_buffer());
2182 if (fbio == NULL) {
2186 BIO_push(fbio, sbio);
2189 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2194 BIO_printf(fbio, "LHLO %s\r\n", protohost);
2196 BIO_printf(fbio, "EHLO %s\r\n", protohost);
2197 (void)BIO_flush(fbio);
2203 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2207 (void)BIO_flush(fbio);
2208 BIO_pop(fbio);
2209 BIO_free(fbio);
2232 BIO *fbio = BIO_new(BIO_f_buffer());
2234 if (fbio == NULL) {
2238 BIO_push(fbio, sbio);
2239 BIO_gets(fbio, mbuf, BUFSIZZ);
2241 BIO_printf(fbio, ". CAPABILITY\r\n");
2242 (void)BIO_flush(fbio);
2245 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2250 (void)BIO_flush(fbio);
2251 BIO_pop(fbio);
2252 BIO_free(fbio);
2263 BIO *fbio = BIO_new(BIO_f_buffer());
2265 if (fbio == NULL) {
2269 BIO_push(fbio, sbio);
2272 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2275 (void)BIO_flush(fbio);
2276 BIO_pop(fbio);
2277 BIO_free(fbio);
2355 BIO *fbio = BIO_new(BIO_f_buffer());
2357 if (fbio == NULL) {
2361 BIO_push(fbio, sbio);
2362 BIO_printf(fbio, "STARTTLS\r\n");
2363 (void)BIO_flush(fbio);
2380 if (!BIO_get_buffer_num_lines(fbio)
2381 && !BIO_pending(fbio)
2391 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2408 (void)BIO_flush(fbio);
2409 BIO_pop(fbio);
2410 BIO_free(fbio);
2519 BIO *fbio = BIO_new(BIO_f_buffer());
2521 if (fbio == NULL) {
2525 BIO_push(fbio, sbio);
2526 BIO_gets(fbio, mbuf, BUFSIZZ);
2528 BIO_printf(fbio, "CAPABILITIES\r\n");
2529 (void)BIO_flush(fbio);
2530 BIO_gets(fbio, mbuf, BUFSIZZ);
2535 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2540 (void)BIO_flush(fbio);
2541 BIO_pop(fbio);
2542 BIO_free(fbio);
2563 BIO *fbio = BIO_new(BIO_f_buffer());
2565 if (fbio == NULL) {
2569 BIO_push(fbio, sbio);
2572 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2583 (void)BIO_flush(fbio);
2584 BIO_pop(fbio);
2585 BIO_free(fbio);