Deleted Added
sdiff udiff text old ( 68651 ) new ( 72613 )
full compact
1=pod
2
3=head1 NAME
4
5SSL_clear - reset SSL object to allow another connection
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 int SSL_clear(SSL *ssl);
12
13=head1 DESCRIPTION
14
15Reset B<ssl> to allow another connection. All settings (method, ciphers,
16BIOs) are kept. A completely negotiated B<SSL_SESSION> is not freed but left
17untouched for the underlying B<SSL_CTX>.
18
19=head1 RETURN VALUES
20
21The following return values can occur:
22
23=over 4
24
25=item 0
26
27The SSL_clear() operation could not be performed. Check the error stack to
28find out the reason.
29
30=item 1
31
32The SSL_clear() operation was successful.
33
34=back
35
36L<SSL_new(3)|SSL_new(3)>, L<SSL_free(3)|SSL_free(3)>,
37L
38
39=cut