Displaying 1 result from an estimated 1 matches for "conntimedout".
Did you mean:
con_timeout
2012 Nov 24
0
ssh-keyscan continuity patch --
...18,6 +1018,17 @@
}
/*
+ * The following two global variables exist to pass connection error
+ * conditions detected by code in packet_read_seqnr() to ssh-keyscan.
+ */
+
+int connclosed = 0; /* = 1 if connection closed by remote server */
+ /* prior to necessary data being read */
+int conntimedout = 0; /* = 1 if connection timed out locally while */
+ /* waiting for data from remote server */
+ /* both currently used in ssh-keyscan.c */
+
+/*
* Waits until a packet has been received, and returns its type. Note that
* no other data is processed until this returns, so this...