Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / ssl / SSL_get_rbio.pod
blob3d98233cacee7193ace8e453d81a950a1f4fe747
1 =pod
3 =head1 NAME
5 SSL_get_rbio - get BIO linked to an SSL object
7 =head1 SYNOPSIS
9  #include <openssl/ssl.h>
11  BIO *SSL_get_rbio(SSL *ssl);
12  BIO *SSL_get_wbio(SSL *ssl);
14 =head1 DESCRIPTION
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.
20 =head1 RETURN VALUES
22 The following return values can occur:
24 =over 4
26 =item NULL
28 No BIO was connected to the SSL object
30 =item Any other pointer
32 The BIO linked to B<ssl>.
34 =back
36 =head1 SEE ALSO
38 L<SSL_set_bio(3)|SSL_set_bio(3)>, L<ssl(3)|ssl(3)> , L<bio(3)|bio(3)>
40 =cut