Displaying 1 result from an estimated 1 matches for "saved_remote_ipaddress".
2000 Aug 24
0
patch for a few things
...--- ./sshd.c Thu Aug 24 15:30:16 2000
***************
*** 90,95 ****
--- 90,101 ----
char **saved_argv;
int saved_argc;
+ /* Save these for use from log_connect_close(), called on fatal_cleanup,
+ * to make sure connection-close is fully logged. */
+ char saved_remote_hostname[200];
+ char saved_remote_ipaddress[200];
+ int saved_remote_port = 0;
+
/*
* The sockets that the server is listening; this is used in the SIGHUP
* signal handler.
***************
*** 228,233 ****
--- 234,248 ----
fatal("Timeout before authentication for %s.", get_remote_ipaddr());
}
+ void
+ log_connect_c...