1gnutls_session_get_data2(3) gnutls gnutls_session_get_data2(3)
2
3
4
6 gnutls_session_get_data2 - Returns all session parameters.
7
9 #include <gnutls/gnutls.h>
10
11 int gnutls_session_get_data2(gnutls_session_t session, gnutls_datum_t *
12 data);
13
15 gnutls_session_t session
16 is a gnutls_session_t structure.
17
18 gnutls_datum_t * data
19 is a pointer to a datum that will hold the session.
20
22 Returns all session parameters, in order to support resuming. The
23 client should call this, and keep the returned session, if he wants to
24 resume that current version later by calling gnutls_session_set_data().
25 This function must be called after a successful handshake. The
26 returned datum must be freed with gnutls_free().
27
28 Resuming sessions is really useful and speedups connections after a
29 succesful one.
30
32 On success, GNUTLS_E_SUCCESS (0) is returned, otherwise an error code
33 is returned.
34
36 Report bugs to <bug-gnutls@gnu.org>. GnuTLS home page:
37 http://www.gnu.org/software/gnutls/ General help using GNU software:
38 http://www.gnu.org/gethelp/
39
41 Copyright © 2008 Free Software Foundation.
42 Copying and distribution of this file, with or without modification,
43 are permitted in any medium without royalty provided the copyright
44 notice and this notice are preserved.
45
47 The full documentation for gnutls is maintained as a Texinfo manual.
48 If the info and gnutls programs are properly installed at your site,
49 the command
50
51 info gnutls
52
53 should give you access to the complete manual.
54
55
56
57gnutls 2.8.6 gnutls_session_get_data2(3)