1=pod
2
3=head1 NAME
4
5SSL_CONF_CTX_set_ssl_ctx, SSL_CONF_CTX_set_ssl - set context to configure
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx);
12 void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl);
13
14=head1 DESCRIPTION
15
16SSL_CONF_CTX_set_ssl_ctx() sets the context associated with B<cctx> to the
17B<SSL_CTX> structure B<ctx>. Any previous B<SSL> or B<SSL_CTX> associated with
18B<cctx> is cleared. Subsequent calls to SSL_CONF_cmd() will be sent to
19B<ctx>.
20
21SSL_CONF_CTX_set_ssl() sets the context associated with B<cctx> to the
22B<SSL> structure B<ssl>. Any previous B<SSL> or B<SSL_CTX> associated with
23B<cctx> is cleared. Subsequent calls to SSL_CONF_cmd() will be sent to
24B<ssl>.
25
26=head1 NOTES
27
28The context need not be set or it can be set to B<NULL> in which case only
29syntax checking of commands is performed, where possible.
30
31=head1 RETURN VALUES
32
33SSL_CONF_CTX_set_ssl_ctx() and SSL_CTX_set_ssl() do not return a value.
34
35=head1 SEE ALSO
36
37L<SSL_CONF_CTX_new(3)>,
38L<SSL_CONF_CTX_set_flags(3)>,
39L<SSL_CONF_CTX_set1_prefix(3)>,
40L<SSL_CONF_cmd(3)>,
41L<SSL_CONF_cmd_argv(3)>
42
43=head1 HISTORY
44
45These functions were added in OpenSSL 1.0.2.
46
47=head1 COPYRIGHT
48
49Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved.
50
51Licensed under the OpenSSL license (the "License").  You may not use
52this file except in compliance with the License.  You can obtain a copy
53in the file LICENSE in the source distribution or at
54L<https://www.openssl.org/source/license.html>.
55
56=cut
57