Displaying 1 result from an estimated 1 matches for "global_listener_time_limit".
2004 Aug 06
0
[PATCH] Add per-listener and per-mount connection time limits.
...dumpfilename != NULL) {
***************
*** 191,196 ****
--- 194,200 ----
refbuf_t *refbuf, *abuf;
int data_done;
+ int client_connect_time;
int listeners = 0;
#ifdef USE_YP
***************
*** 202,207 ****
--- 206,214 ----
#endif
long queue_limit;
+ int global_listener_time_limit;
+ int mount_listener_time_limit;
+ int listener_time_limit;
ice_config_t *config;
char *hostname;
int port;
***************
*** 209,214 ****
--- 216,223 ----
config = config_get_config();
queue_limit = config->queue_size_limit;
+ global_listener_...