RAND: Rename the RAND_poll_ex() callback and its typedef
[openssl.git] / doc / man3 / SSL_SESSION_has_ticket.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_SESSION_get0_ticket,
6 SSL_SESSION_has_ticket, SSL_SESSION_get_ticket_lifetime_hint
7 - get details about the ticket associated with a session
8
9 =head1 SYNOPSIS
10
11  #include <openssl/ssl.h>
12
13  int SSL_SESSION_has_ticket(const SSL_SESSION *s);
14  unsigned long SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s);
15  void SSL_SESSION_get0_ticket(const SSL_SESSION *s, const unsigned char **tick,
16                               size_t *len);
17
18 =head1 DESCRIPTION
19
20 SSL_SESSION_has_ticket() returns 1 if there is a Session Ticket associated with
21 this session, and 0 otherwise.
22
23 SSL_SESSION_get_ticket_lifetime_hint returns the lifetime hint in seconds
24 associated with the session ticket.
25
26 SSL_SESSION_get0_ticket obtains a pointer to the ticket associated with a
27 session. The length of the ticket is written to B<*len>. If B<tick> is non
28 NULL then a pointer to the ticket is written to B<*tick>. The pointer is only
29 valid while the connection is in use. The session (and hence the ticket pointer)
30 may also become invalid as a result of a call to SSL_CTX_flush_sessions().
31
32 =head1 SEE ALSO
33
34 L<ssl(7)>,
35 L<d2i_SSL_SESSION(3)>,
36 L<SSL_SESSION_get_time(3)>,
37 L<SSL_SESSION_free(3)>
38
39 =head1 HISTORY
40
41 SSL_SESSION_has_ticket, SSL_SESSION_get_ticket_lifetime_hint and
42 SSL_SESSION_get0_ticket were added in OpenSSL 1.1.0.
43
44 =head1 COPYRIGHT
45
46 Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
47
48 Licensed under the OpenSSL license (the "License").  You may not use
49 this file except in compliance with the License.  You can obtain a copy
50 in the file LICENSE in the source distribution or at
51 L<https://www.openssl.org/source/license.html>.
52
53 =cut