aboutsummaryrefslogtreecommitdiff
path: root/src/lib/connection_options.c
blob: 163c956ae3d2bbb78d804b88c1e710fc9b2d836d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Generate option to set a custom timeout for the given connection.
 * Specified as the number of seconds.  Use zero for no timeout.  If
 * timeout was set to zero (or unset) before, setting of a new value
 * by MHD_connection_set_option() will reset timeout timer.
 *
 * @param connection connection to configure timeout for
 * @param timeout_s new timeout in seconds
 */
struct MHD_ConnectionOption
MHD_connection_timeout (struct MHD_Connection *connection,
			unsigned int timeout_s);