search for: proxy_command_pid

Displaying 3 results from an estimated 3 matches for "proxy_command_pid".

2005 Nov 11
2
[Bug 1118] Annoying "Killed by signal 1" message with ProxyCommand
http://bugzilla.mindrot.org/show_bug.cgi?id=1118 Summary: Annoying "Killed by signal 1" message with ProxyCommand Product: Portable OpenSSH Version: 4.2p1 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: P2 Component: ssh AssignedTo: bitbucket at mindrot.org
2004 Aug 26
2
OpenSSH PATCH: OpenCommand and CloseCommand
...command, "none") != 0) + ssh_run_command("open", host, options.port, options.open_command); + /* Open a connection to the remote host. */ if (ssh_connect(host, &hostaddr, options.port, options.address_family, options.connection_attempts, @@ -725,6 +730,11 @@ if (proxy_command_pid > 1) kill(proxy_command_pid, SIGHUP); + /* Execute close command, if set */ + if (options.close_command != NULL && + strcmp(options.close_command, "none") != 0) + ssh_run_command("close", host, options.port, options.close_command); + return exit_status; }...
2015 Jun 22
2
Small issue with DNSSEC / SSHFP
...validation fails. diff --git a/sshconnect.c b/sshconnect.c index f41960c..9f1eafa 100644 --- a/sshconnect.c +++ b/sshconnect.c @@ -71,6 +71,7 @@ char *server_version_string = NULL; Key *previous_host_key = NULL; static int matching_host_key_dns = 0; +static int dns_secure = 0; static pid_t proxy_command_pid = 0; @@ -972,13 +973,18 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, fatal("%s: sshkey_fingerprint fail", __func__); msg2[0] = '\0'; if (options.verify_host_key_dns) { - if (matching_host_key_dns) + if (!matching_host_key_dns)...