1gnutls_session_ticket_enable_server(3g)nutlgsnutls_session_ticket_enable_server(3)
2
3
4
6 gnutls_session_ticket_enable_server - API function
7
9 #include <gnutls/gnutls.h>
10
11 int gnutls_session_ticket_enable_server(gnutls_session_t session, const
12 gnutls_datum_t * key);
13
15 gnutls_session_t session
16 is a gnutls_session_t type.
17
18 const gnutls_datum_t * key
19 key to encrypt session parameters.
20
22 Request that the server should attempt session resumption using session
23 tickets, i.e., by delegating storage to the client.
24 key must be initialized using gnutls_session_ticket_key_generate().
25 To avoid leaking that key, use gnutls_memset() prior to releasing it.
26
27 The default ticket expiration time can be overridden using
28 gnutls_db_set_cache_expiration().
29
31 On success, GNUTLS_E_SUCCESS (0) is returned, or an error code.
32
34 2.10.0
35
37 Report bugs to <bugs@gnutls.org>.
38 Home page: https://www.gnutls.org
39
40
42 Copyright © 2001- Free Software Foundation, Inc., and others.
43 Copying and distribution of this file, with or without modification,
44 are permitted in any medium without royalty provided the copyright
45 notice and this notice are preserved.
46
48 The full documentation for gnutls is maintained as a Texinfo manual.
49 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
50 visit
51
52 https://www.gnutls.org/manual/
53
54gnutls 3.6.1g5nutls_session_ticket_enable_server(3)