summaryrefslogtreecommitdiff
path: root/src/lib/libssl/doc/SSL_get_rbio.3
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/doc/SSL_get_rbio.3')
-rw-r--r--src/lib/libssl/doc/SSL_get_rbio.342
1 files changed, 42 insertions, 0 deletions
diff --git a/src/lib/libssl/doc/SSL_get_rbio.3 b/src/lib/libssl/doc/SSL_get_rbio.3
new file mode 100644
index 0000000000..a8370d5ef2
--- /dev/null
+++ b/src/lib/libssl/doc/SSL_get_rbio.3
@@ -0,0 +1,42 @@
1.Dd $Mdocdate: October 12 2014 $
2.Dt SSL_GET_RBIO 3
3.Os
4.Sh NAME
5.Nm SSL_get_rbio ,
6.Nm SSL_get_wbio
7.Nd get BIO linked to an SSL object
8.Sh SYNOPSIS
9.In openssl/ssl.h
10.Ft BIO *
11.Fn SSL_get_rbio "SSL *ssl"
12.Ft BIO *
13.Fn SSL_get_wbio "SSL *ssl"
14.Sh DESCRIPTION
15.Fn SSL_get_rbio
16and
17.Fn SSL_get_wbio
18return pointers to the
19.Vt BIO Ns s
20for the read or the write channel, which can be different.
21The reference count of the
22.Vt BIO
23is not incremented.
24.Sh RETURN VALUES
25The following return values can occur:
26.Bl -tag -width Ds
27.It Dv NULL
28No
29.Vt BIO
30was connected to the
31.Vt SSL
32object.
33.It Any other pointer
34The
35.Vt BIO
36linked to
37.Fa ssl .
38.El
39.Sh SEE ALSO
40.Xr bio 3 ,
41.Xr ssl 3 ,
42.Xr SSL_set_bio 3