aboutsummaryrefslogtreecommitdiffstats
path: root/doc/ssl/SSL_get_SSL_CTX.pod
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2001-08-17 15:54:50 +0000
committerLutz Jänicke <jaenicke@openssl.org>2001-08-17 15:54:50 +0000
commita52877a2f1e4cda2224bcae3d221972c8a2c6dd8 (patch)
tree36fc164d69c6fc06bffa54ac5540ba3f2077a6bb /doc/ssl/SSL_get_SSL_CTX.pod
parentcdd7c3ce92007145c0cfef886f4c1eb814af1c21 (diff)
downloadopenssl-a52877a2f1e4cda2224bcae3d221972c8a2c6dd8.tar.gz
One more function documented.
Diffstat (limited to 'doc/ssl/SSL_get_SSL_CTX.pod')
-rw-r--r--doc/ssl/SSL_get_SSL_CTX.pod26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/ssl/SSL_get_SSL_CTX.pod b/doc/ssl/SSL_get_SSL_CTX.pod
new file mode 100644
index 0000000000..52d0227b19
--- /dev/null
+++ b/doc/ssl/SSL_get_SSL_CTX.pod
@@ -0,0 +1,26 @@
+=pod
+
+=head1 NAME
+
+SSL_get_SSL_CTX - get the SSL_CTX from which an SSL is created
+
+=head1 SYNOPSIS
+
+ #include <openssl/ssl.h>
+
+ SSL_CTX *SSL_get_SSL_CTX(SSL *ssl);
+
+=head1 DESCRIPTION
+
+SSL_get_SSL_CTX() returns a pointer to the SSL_CTX object, from which
+B<ssl> was created with L<SSL_new(3)|SSL_new(3)>.
+
+=head1 RETURN VALUES
+
+The pointer to the SSL_CTX object is returned.
+
+=head1 SEE ALSO
+
+L<ssl(3)|ssl(3)>, L<SSL_new(3)|SSL_new(3)>
+
+=cut