Import OpenSSL-0.9.8i.
[dragonfly.git] / crypto / openssl-0.9.7d / doc / ssl / SSL_session_reused.pod
blobda7d06264d04d47cbf99a0e200d17dfe8db20532
1 =pod
3 =head1 NAME
5 SSL_session_reused - query whether a reused session was negotiated during handshake
7 =head1 SYNOPSIS
9  #include <openssl/ssl.h>
11  int SSL_session_reused(SSL *ssl);
13 =head1 DESCRIPTION
15 Query, whether a reused session was negotiated during the handshake.
17 =head1 NOTES
19 During the negotiation, a client can propose to reuse a session. The server
20 then looks up the session in its cache. If both client and server agree
21 on the session, it will be reused and a flag is being set that can be
22 queried by the application.
24 =head1 RETURN VALUES
26 The following return values can occur:
28 =over 4
30 =item 0
32 A new session was negotiated.
34 =item 1
36 A session was reused.
38 =back
40 =head1 SEE ALSO
42 L<ssl(3)|ssl(3)>, L<SSL_set_session(3)|SSL_set_session(3)>,
43 L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>
45 =cut