Searched defs:bio_ext (Results 1 - 2 of 2) sorted by relevance

/dovecot/src/lib-ssl-iostream/
H A Diostream-openssl.h36 BIO *bio_ext; member in struct:ssl_iostream
H A Diostream-openssl.c255 BIO *bio_int, *bio_ext; local
271 into the given buffer. The bio_int is used by OpenSSL and bio_ext
273 if (BIO_new_bio_pair(&bio_int, 0, &bio_ext, 0) != 1) {
285 ssl_io->bio_ext = bio_ext;
326 BIO_free(ssl_io->bio_ext);
371 while ((bytes = BIO_ctrl_pending(ssl_io->bio_ext)) > 0) {
389 ret = BIO_read(ssl_io->bio_ext, buffer, bytes);
443 while ((bytes = BIO_ctrl_get_write_guarantee(ssl_io->bio_ext)) > 0) {
444 /* bytes contains how many bytes we can write to bio_ext */
[all...]

Completed in 941 milliseconds