Displaying 1 result from an estimated 1 matches for "micbowman".
Did you mean:
mic_bowman
2004 Mar 26
2
Patch for login exchange timeout
...is happens with some regularity on
PlanetLab (www.planet-lab.org)... Anyway, that
situation is not caught be either the
ConnectionTimeout, TCPKeepAlive, or the ServerAlive
timeouts. This patch just sets an alarm prior to the
atomicio call that reads & processes the banner from
the sshd.
--Mic
micbowman at comcast dot net
*** sshconnect.c 2004-01-27 02:21:27.000000000 -0800
--- sshconnect-new.c 2004-03-26 14:48:24.000000000
-0800
***************
*** 429,434 ****
--- 429,444 ----
}
/*
+ * Signal handler for the alarm after the login
grace period has expired.
+ */
+ static void
+ grace_al...