blob: 7ba5b0cb811b366037fc0ab149f4138791826abe (
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.2 2014/12/02 14:11:01 jmc Exp $
.\"
.Dd $Mdocdate: December 2 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
|