1gnutls_system_recv_timeout(3) gnutls gnutls_system_recv_timeout(3)
2
3
4
6 gnutls_system_recv_timeout - API function
7
9 #include <gnutls/gnutls.h>
10
11 int gnutls_system_recv_timeout(gnutls_transport_ptr_t ptr, unsigned int
12 ms);
13
15 gnutls_transport_ptr_t ptr
16 A file descriptor (wrapped in a gnutls_transport_ptr_t
17 pointer)
18
19 unsigned int ms
20 The number of milliseconds to wait.
21
23 Wait for data to be received from the provided socket ( ptr ) within a
24 timeout period in milliseconds, using select() on the provided ptr .
25
26 This function is provided as a helper for constructing custom callbacks
27 for gnutls_transport_set_pull_timeout_function(), which can be used if
28 you rely on socket file descriptors.
29
30 Returns -1 on error, 0 on timeout, positive value if data are available
31 for reading.
32
34 3.4.0
35
37 Report bugs to <bugs@gnutls.org>.
38 Home page: https://www.gnutls.org
39
40
42 Copyright © 2001-2023 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 no‐
45 tice 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.8.2 gnutls_system_recv_timeout(3)