SSL_get_rbio.3ossl - Man Page

get BIO linked to an SSL object

Synopsis

 #include <openssl/ssl.h>

 BIO *SSL_get_rbio(SSL *ssl);
 BIO *SSL_get_wbio(SSL *ssl);

Description

SSL_get_rbio() and SSL_get_wbio() return pointers to the BIOs for the read or the write channel, which can be different. The reference count of the BIO is not incremented.

Return Values

The following return values can occur:

NULL

No BIO was connected to the SSL object

Any other pointer

The BIO linked to ssl.

See Also

SSL_set_bio(3), ssl(7) , bio(7)

Referenced By

SSL_set_bio.3ossl(3).

The man page SSL_get_wbio.3ossl(3) is an alias of SSL_get_rbio.3ossl(3).

2024-03-07 3.2.1 OpenSSL