Home
last modified time | relevance | path

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

/freebsd-9-stable/crypto/openssh/
Dauth2-gss.c121 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token); in userauth_gssapi()
122 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok); in userauth_gssapi()
159 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); in input_gssapi_token()
168 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); in input_gssapi_token()
170 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_MIC, in input_gssapi_token()
173 dispatch_set( in input_gssapi_token()
208 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); in input_gssapi_errtok()
209 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL); in input_gssapi_errtok()
241 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); in input_gssapi_exchange_complete()
242 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL); in input_gssapi_exchange_complete()
[all …]
Dserverloop.c1231 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose); in server_init_dispatch_20()
1232 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data); in server_init_dispatch_20()
1233 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof); in server_init_dispatch_20()
1234 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data); in server_init_dispatch_20()
1235 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open); in server_init_dispatch_20()
1236 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); in server_init_dispatch_20()
1237 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); in server_init_dispatch_20()
1238 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req); in server_init_dispatch_20()
1239 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust); in server_init_dispatch_20()
1240 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request); in server_init_dispatch_20()
[all …]
Dclientloop.c2207 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose); in client_init_dispatch_20()
2208 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data); in client_init_dispatch_20()
2209 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof); in client_init_dispatch_20()
2210 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data); in client_init_dispatch_20()
2211 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open); in client_init_dispatch_20()
2212 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); in client_init_dispatch_20()
2213 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); in client_init_dispatch_20()
2214 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req); in client_init_dispatch_20()
2215 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust); in client_init_dispatch_20()
2216 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm); in client_init_dispatch_20()
[all …]
Dauth2.c176 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request); in do_authentication2()
197 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request); in input_service_request()
301 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); in input_userauth_request()
302 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL); in input_userauth_request()
380 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore); in userauth_finish()
Dsshconnect2.c418 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success); in ssh_userauth2()
419 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure); in ssh_userauth2()
420 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner); in ssh_userauth2()
691 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response); in userauth_gssapi()
692 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token); in userauth_gssapi()
693 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error); in userauth_gssapi()
694 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok); in userauth_gssapi()
914 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ, in userauth_passwd()
986 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ, in input_userauth_passwd_changereq()
1117 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok); in send_pubkey_test()
[all …]
Ddispatch.h37 void dispatch_set(int, dispatch_fn *);
Ddispatch.c79 dispatch_set(int type, dispatch_fn *fn) in dispatch_set() function
Dauth2-chall.c215 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, NULL); in auth2_challenge_stop()
246 dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, in auth2_challenge_start()
Dssh_namespace.h274 #define dispatch_set ssh_dispatch_set macro
Dkex.c227 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); in kex_reset_dispatch()