1SSL_get_rbio(3)                     OpenSSL                    SSL_get_rbio(3)
2
3
4

NAME

6       SSL_get_rbio - get BIO linked to an SSL object
7

SYNOPSIS

9        #include <openssl/ssl.h>
10
11        BIO *SSL_get_rbio(SSL *ssl);
12        BIO *SSL_get_wbio(SSL *ssl);
13

DESCRIPTION

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

RETURN VALUES

20       The following return values can occur:
21
22       NULL
23           No BIO was connected to the SSL object
24
25       Any other pointer
26           The BIO linked to ssl.
27

SEE ALSO

29       SSL_set_bio(3), ssl(3) , bio(3)
30
31
32
331.0.2o                            2018-03-27                   SSL_get_rbio(3)
Impressum