• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/OpenSSH-189/openssh/

Lines Matching refs:dispatch_set

2267 	dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
2268 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
2269 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
2270 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
2271 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
2272 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2273 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2274 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
2275 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
2276 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
2277 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
2278 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
2281 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
2284 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
2285 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
2292 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2293 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2294 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
2295 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2296 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2297 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
2298 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2299 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2300 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
2302 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
2304 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2312 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2313 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);