~mmach/netext73/isl

« back to all changes in this revision

Viewing changes to doc/ssl/SSL_get_SSL_CTX.pod

  • Committer: mmach
  • Date: 2019-05-14 07:37:06 UTC
  • Revision ID: netbit73@gmail.com-20190514073706-nt6iq2m3597se19c
0.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
=pod
 
2
 
 
3
=head1 NAME
 
4
 
 
5
SSL_get_SSL_CTX - get the SSL_CTX from which an SSL is created
 
6
 
 
7
=head1 SYNOPSIS
 
8
 
 
9
 #include <openssl/ssl.h>
 
10
 
 
11
 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl);
 
12
 
 
13
=head1 DESCRIPTION
 
14
 
 
15
SSL_get_SSL_CTX() returns a pointer to the SSL_CTX object, from which
 
16
B<ssl> was created with L<SSL_new(3)|SSL_new(3)>.
 
17
 
 
18
=head1 RETURN VALUES
 
19
 
 
20
The pointer to the SSL_CTX object is returned.
 
21
 
 
22
=head1 SEE ALSO
 
23
 
 
24
L<ssl(3)|ssl(3)>, L<SSL_new(3)|SSL_new(3)>
 
25
 
 
26
=cut