]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/ssl/SSL_set_connect_state.pod
ispell
[thirdparty/openssl.git] / doc / ssl / SSL_set_connect_state.pod
CommitLineData
eb272ac0
LJ
1=pod
2
3=head1 NAME
4
5SSL_set_connect_state, SSL_get_accept_state - prepare SSL object to work in client or server mode
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 void SSL_set_connect_state(SSL *ssl);
12
13 void SSL_set_accept_state(SSL *ssl);
14
15=head1 DESCRIPTION
16
7abe76e1 17SSL_set_connect_state() sets B<ssl> to work in client mode.
eb272ac0 18
7abe76e1 19SSL_set_accept_state() sets B<ssl> to work in server mode.
eb272ac0
LJ
20
21=head1 NOTES
22
23When the SSL_CTX object was created with L<SSL_CTX_new(3)|SSL_CTX_new(3)>,
24it was either assigned a dedicated client method, a dedicated server
25method, or a generic method, that can be used for both client and
26server connections. (The method might have been changed with
27L<SSL_CTX_set_ssl_version(3)|SSL_CTX_set_ssl_version(3)> or
28SSL_set_ssl_method().)
29
7abe76e1
LJ
30When beginning a new handshake, the SSL engine must know whether it must
31call the connect (client) or accept (server) routines. Even though it may
32be clear from the method chosen, whether client or server mode was
33requested, the handshake routines must be explicitly set.
34
35When using the L<SSL_connect(3)|SSL_connect(3)> or
36L<SSL_accept(3)|SSL_accept(3)> routines, the correct handshake
37routines are automatically set. When performing a transparent negotiation
38using L<SSL_write(3)|SSL_write(3)> or L<SSL_read(3)|SSL_read(3)>, the
3b80e3aa 39handshake routines must be explicitly set in advance using either
7abe76e1 40SSL_set_connect_state() or SSL_set_accept_state().
eb272ac0
LJ
41
42=head1 RETURN VALUES
43
44SSL_set_connect_state() and SSL_set_accept_state() do not return diagnostic
45information.
46
47=head1 SEE ALSO
48
49L<ssl(3)|ssl(3)>, L<SSL_new(3)|SSL_new(3)>, L<SSL_CTX_new(3)|SSL_CTX_new(3)>,
7abe76e1
LJ
50L<SSL_connect(3)|SSL_connect(3)>, L<SSL_accept(3)|SSL_accept(3)>,
51L<SSL_write(3)|SSL_write(3)>, L<SSL_read(3)|SSL_read(3)>,
eb272ac0
LJ
52L<SSL_CTX_set_ssl_version(3)|SSL_CTX_set_ssl_version(3)>
53
54=cut