1SSL_GET_SSL_CTX(3) OpenSSL SSL_GET_SSL_CTX(3)
2
3
4
6 SSL_get_SSL_CTX - get the SSL_CTX from which an SSL is created
7
9 #include <openssl/ssl.h>
10
11 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl);
12
14 SSL_get_SSL_CTX() returns a pointer to the SSL_CTX object, from which
15 ssl was created with SSL_new(3).
16
18 The pointer to the SSL_CTX object is returned.
19
21 ssl(7), SSL_new(3)
22
24 Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
25
26 Licensed under the OpenSSL license (the "License"). You may not use
27 this file except in compliance with the License. You can obtain a copy
28 in the file LICENSE in the source distribution or at
29 <https://www.openssl.org/source/license.html>.
30
31
32
331.1.1q 2023-07-20 SSL_GET_SSL_CTX(3)