Displaying 1 result from an estimated 1 matches for "connclosed".
Did you mean:
con_close
2012 Nov 24
0
ssh-keyscan continuity patch --
...1/packet.c.orig 2012-03-08 18:28:07.000000000 -0500
+++ openssh-6.1p1/packet.c 2012-11-23 18:18:00.233636000 -0500
@@ -1018,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 unt...