summaryrefslogtreecommitdiff
path: root/lib/libssl/man/SSL_get_SSL_CTX.3
blob: ee211f8fdcec18763c0659fdb319df0b94d56b6c (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
26
27
28
.\"
.\"	$OpenBSD: SSL_get_SSL_CTX.3,v 1.1 2016/11/05 15:32:20 schwarze Exp $
.\"
.Dd $Mdocdate: November 5 2016 $
.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