blob: 40effb512f7971b2b613f26baced108b5ef8c6ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
.Dd $Mdocdate: October 12 2014 $
.Dt SSL_GET_SSL_CTX 3
.Os
.Sh NAME
.Nm SSL_get_SSL_CTX
.Nd get the SSL_CTX from which an SSL is created
.Sh SYNOPSIS
.In openssl/ssl.h
.Ft SSL_CTX *
.Fn SSL_get_SSL_CTX "const SSL *ssl"
.Sh DESCRIPTION
.Fn SSL_get_SSL_CTX
returns a pointer to the
.Vt SSL_CTX
object from which
.Fa ssl
was created with
.Xr SSL_new 3 .
.Sh RETURN VALUES
The pointer to the
.Vt SSL_CTX
object is returned.
.Sh SEE ALSO
.Xr ssl 3 ,
.Xr SSL_new 3
|