Home | History | Annotate | Download | only in openssh

Lines Matching refs:dispatch_set

1204 	dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1205 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1206 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1207 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
1208 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
1209 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1210 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1211 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
1212 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
1213 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
1215 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &server_input_keep_alive);
1216 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
1217 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
1218 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
1220 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
1227 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
1228 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
1229 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
1230 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1231 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1232 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
1233 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1234 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1235 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
1242 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1243 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);