1SSL_GET_RBIO(3) OpenSSL SSL_GET_RBIO(3)
2
3
4
6 SSL_get_rbio, SSL_get_wbio - get BIO linked to an SSL object
7
9 #include <openssl/ssl.h>
10
11 BIO *SSL_get_rbio(SSL *ssl);
12 BIO *SSL_get_wbio(SSL *ssl);
13
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
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
29 SSL_set_bio(3), ssl(7) , bio(7)
30
32 Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
33
34 Licensed under the OpenSSL license (the "License"). You may not use
35 this file except in compliance with the License. You can obtain a copy
36 in the file LICENSE in the source distribution or at
37 <https://www.openssl.org/source/license.html>.
38
39
40
411.1.1 2018-09-11 SSL_GET_RBIO(3)