Lines Matching refs:dispatch_set
2090 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
2091 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
2092 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
2093 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
2094 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
2095 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2096 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2097 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
2098 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
2099 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
2100 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
2101 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
2104 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
2107 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
2108 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
2115 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2116 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2117 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
2118 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2119 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2120 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
2121 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2122 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2123 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
2125 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
2127 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2135 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2136 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);