1gnutls_record_set_max_size(3) gnutls gnutls_record_set_max_size(3)
2
3
4
6 gnutls_record_set_max_size - sets the maximum record size
7
9 #include <gnutls/gnutls.h>
10
11 ssize_t gnutls_record_set_max_size(gnutls_session_t session, size_t
12 size);
13
15 gnutls_session_t session
16 is a gnutls_session_t structure.
17
18 size_t size is the new size
19
21 This function sets the maximum record packet size in this connection.
22 This property can only be set to clients. The server may choose not to
23 accept the requested size.
24
25 Acceptable values are 512(=2^9), 1024(=2^10), 2048(=2^11) and
26 4096(=2^12). Returns 0 on success. The requested record size does get
27 in effect immediately only while sending data. The receive part will
28 take effect after a successful handshake.
29
30 This function uses a TLS extension called 'max record size'. Not all
31 TLS implementations use or even understand this extension.
32
34 Report bugs to <bug-gnutls@gnu.org>.
35
37 Copyright © 2006 Free Software Foundation.
38 Permission is granted to make and distribute verbatim copies of this
39 manual provided the copyright notice and this permission notice are
40 preserved on all copies.
41
43 The full documentation for gnutls is maintained as a Texinfo manual.
44 If the info and gnutls programs are properly installed at your site,
45 the command
46
47 info gnutls
48
49 should give you access to the complete manual.
50
51
52
53gnutls 1.6.3 gnutls_record_set_max_size(3)