Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
Matt Caswell | aafbe1c | 2013-06-12 23:42:08 +0100 | [diff] [blame] | 5 | SSL_get_rbio, SSL_get_wbio - get BIO linked to an SSL object |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 6 | |
| 7 | =head1 SYNOPSIS |
| 8 | |
| 9 | #include <openssl/ssl.h> |
| 10 | |
| 11 | BIO *SSL_get_rbio(SSL *ssl); |
| 12 | BIO *SSL_get_wbio(SSL *ssl); |
| 13 | |
| 14 | =head1 DESCRIPTION |
| 15 | |
| 16 | SSL_get_rbio() and SSL_get_wbio() return pointers to the BIOs for the |
| 17 | read or the write channel, which can be different. The reference count |
| 18 | of the BIO is not incremented. |
| 19 | |
| 20 | =head1 RETURN VALUES |
| 21 | |
| 22 | The following return values can occur: |
| 23 | |
| 24 | =over 4 |
| 25 | |
| 26 | =item NULL |
| 27 | |
Ulf Möller | 1e4e549 | 2000-09-16 15:39:28 +0000 | [diff] [blame] | 28 | No BIO was connected to the SSL object |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 29 | |
| 30 | =item Any other pointer |
| 31 | |
| 32 | The BIO linked to B<ssl>. |
| 33 | |
| 34 | =back |
| 35 | |
| 36 | =head1 SEE ALSO |
| 37 | |
Richard Levitte | b97fdb5 | 2016-11-11 09:33:09 +0100 | [diff] [blame] | 38 | L<SSL_set_bio(3)>, L<ssl(7)> , L<bio(7)> |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 39 | |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 40 | =head1 COPYRIGHT |
| 41 | |
| 42 | Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. |
| 43 | |
| 44 | Licensed under the OpenSSL license (the "License"). You may not use |
| 45 | this file except in compliance with the License. You can obtain a copy |
| 46 | in the file LICENSE in the source distribution or at |
| 47 | L<https://www.openssl.org/source/license.html>. |
| 48 | |
| 49 | =cut |