search for: sshmux_ver

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

2008 Jun 19
5
Portforwarding using the control master.
Hi all, currently I am considering writing a patch for OpenSSH that will allow portforwarding using the control_master unix domain socket. The idea is to introduce an extra SSHMUX command, SSHMUX_COMMAND_SOCKS, which will then pass control to the normal socks functions used for dynamic forwarding. The main reason for me to write this patch are: - some more control over who gets to connect to
2010 Jan 14
1
ssh(1) multiplexing rewrite
...diff -u -p -r1.22 clientloop.h --- clientloop.h 12 Jun 2008 15:19:17 -0000 1.22 +++ clientloop.h 14 Jan 2010 03:07:49 -0000 @@ -56,7 +56,7 @@ typedef void global_confirm_cb(int, u_in void client_register_global_confirm(global_confirm_cb *, void *); /* Multiplexing protocol version */ -#define SSHMUX_VER 2 +#define SSHMUX_VER 4 /* Multiplexing control protocol flags */ #define SSHMUX_COMMAND_OPEN 1 /* Open new connection */ @@ -71,3 +71,4 @@ void client_register_global_confirm(glo void muxserver_listen(void); int muxserver_accept_control(void); void muxclient(const char *); +void mux_e...