Home
last modified time | relevance | path

Searched refs:dispatch_set (Results 1 – 8 of 8) sorted by relevance

/mirbsd/src/usr.bin/ssh/
Dserverloop.c1165 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose); in server_init_dispatch_20()
1166 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data); in server_init_dispatch_20()
1167 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof); in server_init_dispatch_20()
1168 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data); in server_init_dispatch_20()
1169 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open); in server_init_dispatch_20()
1170 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); in server_init_dispatch_20()
1171 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); in server_init_dispatch_20()
1172 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req); in server_init_dispatch_20()
1173 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust); in server_init_dispatch_20()
1174 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request); in server_init_dispatch_20()
[all …]
Dclientloop.c1972 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose); in client_init_dispatch_20()
1973 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data); in client_init_dispatch_20()
1974 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof); in client_init_dispatch_20()
1975 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data); in client_init_dispatch_20()
1976 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open); in client_init_dispatch_20()
1977 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); in client_init_dispatch_20()
1978 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); in client_init_dispatch_20()
1979 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req); in client_init_dispatch_20()
1980 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust); in client_init_dispatch_20()
1981 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm); in client_init_dispatch_20()
[all …]
Dauth2.c148 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request); in do_authentication2()
169 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request); in input_service_request()
272 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore); in userauth_finish()
Dsshconnect2.c311 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success); in ssh_userauth2()
312 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure); in ssh_userauth2()
313 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner); in ssh_userauth2()
540 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ, in userauth_passwd()
610 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ, in input_userauth_passwd_changereq()
738 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok); in send_pubkey_test()
935 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL); in userauth_kbdint()
949 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req); in userauth_kbdint()
Ddispatch.h34 void dispatch_set(int, dispatch_fn *);
Dauth2-chall.c169 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, NULL); in auth2_challenge_stop()
200 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, in auth2_challenge_start()
Ddispatch.c83 dispatch_set(int type, dispatch_fn *fn) in dispatch_set() function
Dkex.c131 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); in kex_reset_dispatch()