search for: mux_client_cleanup

Displaying 2 results from an estimated 2 matches for "mux_client_cleanup".

2016 Jul 22
2
SSH crash on OpenBSD (pledge related?)
Hello, I just ran upon this problem and couldn't find it in bugzilla. SSH crashes (abort trap) if all of the following conditions are met: (a) option -f is used (crash happens when going to background), (b) reverse port forwarding is set up (option -R), (c) option ExitOnForwardFailure is enabled, (d) there are no actual port-forwarding failures. The problem can be reproduced by
2010 Jan 14
1
ssh(1) multiplexing rewrite
...on 1.216 diff -u -p -r1.216 clientloop.c --- clientloop.c 9 Jan 2010 05:04:24 -0000 1.216 +++ clientloop.c 14 Jan 2010 03:07:49 -0000 @@ -113,7 +113,7 @@ extern int stdin_null_flag; extern int no_shell_flag; /* Control socket */ -extern int muxserver_sock; +extern int muxserver_sock; /* XXX use mux_client_cleanup() instead */ /* * Name of the host we are connecting to. This is the name given on the @@ -138,7 +138,7 @@ static volatile sig_atomic_t received_si static int in_non_blocking_mode = 0; /* Common data for the client loop code. */ -static volatile sig_atomic_t quit_pending; /* Set non-zero...