Displaying 2 results from an estimated 2 matches for "overstay".
Did you mean:
overlay
2011 Jun 01
0
Installing R on ubuntu 10.04 LTS: Solved
Dear list,
Thanks for your time. I was surprised. While I was still waiting for your
response, I entered R and discovered that it has been updated!!!! I hurried
logged out and went home since I had overstayed battling with it. I wonder
how the update happened with the numerous errors that were reported. I wish
I will be able to find out, otherwise, I am off with my analysis with the
new version :)
Many thanks!!
Best regards
Ogbos
2011/5/31 Christophe Bonenfant <christophe.bonenfant@univ-lyon1.fr&g...
2004 Aug 06
0
[PATCH] Add per-listener and per-mount connection time limits.
...abuf = refbuf_queue_remove(&client->queue);
--- 437,468 ----
avl_node_wlock(client_node);
client = (client_t *)client_node->key;
!
data_done = 0;
+ listener_time_limit = 0;
+
+ /* Kick any clients that have overstayed their time limit. */
+ if ((global_listener_time_limit > 0) ||
+ (mount_listener_time_limit > 0)) {
+ current_time = time(NULL);
+ client_connect_time = current_time - client->con->con_time;
+
+ if ((global_li...