• Home
  • Raw
  • Download

Lines Matching refs:dispatch_set

2591 	dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);  in client_init_dispatch_20()
2592 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data); in client_init_dispatch_20()
2593 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof); in client_init_dispatch_20()
2594 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data); in client_init_dispatch_20()
2595 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open); in client_init_dispatch_20()
2596 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); in client_init_dispatch_20()
2597 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); in client_init_dispatch_20()
2598 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req); in client_init_dispatch_20()
2599 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust); in client_init_dispatch_20()
2600 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm); in client_init_dispatch_20()
2601 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm); in client_init_dispatch_20()
2602 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request); in client_init_dispatch_20()
2605 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); in client_init_dispatch_20()
2608 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply); in client_init_dispatch_20()
2609 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply); in client_init_dispatch_20()
2616 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close); in client_init_dispatch_13()
2617 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation); in client_init_dispatch_13()
2618 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data); in client_init_dispatch_13()
2619 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); in client_init_dispatch_13()
2620 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); in client_init_dispatch_13()
2621 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open); in client_init_dispatch_13()
2622 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status); in client_init_dispatch_13()
2623 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data); in client_init_dispatch_13()
2624 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data); in client_init_dispatch_13()
2626 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ? in client_init_dispatch_13()
2628 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ? in client_init_dispatch_13()
2636 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); in client_init_dispatch_15()
2637 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose); in client_init_dispatch_15()