search for: ssh_smsg_x11_open

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

2001 Oct 26
2
Patch to add "warn" value to ForwardX11 and ForwardAgent
...ient_input_exit_status); dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data); dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data); - - dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ? - &auth_input_open_request : &deny_input_open); - dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ? - &x11_input_open : &deny_input_open); + dispatch_set(SSH_SMSG_AGENT_OPEN, &client_input_agent_open); + dispatch_set(SSH_SMSG_X11_OPEN, &client_input_x11_open); } static void client_init_dispatch_15(void) --- ssh.1.O Fri Oct 26 12:56:10 2001 +++ ssh.1 F...
2001 Oct 24
2
disable features
...TDERR_DATA, &client_input_stderr_data); dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data); +#ifdef WITH_AGENTFWD dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ? &auth_input_open_request : &deny_input_open); +#endif +#ifdef WITH_X11FWD dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ? &x11_input_open : &deny_input_open); +#endif } static void client_init_dispatch_15(void) Index: compress.c =================================================================== RCS file: /home/markus/cvs/ssh/compress.c,v retrieving revision 1.15 diff -u -r1.15...