OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ssh_dispatch_set
(Results
1 - 12
of
12
) sorted by relevancy
/src/crypto/external/bsd/openssh/dist/
auth2-gss.c
142
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
143
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
186
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
198
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
200
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_MIC,
203
ssh_dispatch_set
(ssh,
242
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
243
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
277
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
278
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL)
[
all
...]
dispatch.h
45
void
ssh_dispatch_set
(struct ssh *, int, dispatch_fn *);
kexgexc.c
87
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_DH_GEX_GROUP,
103
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_DH_GEX_GROUP, &kex_protocol_error);
136
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_DH_GEX_REPLY, &input_kex_dh_gex_reply);
159
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_DH_GEX_REPLY, &kex_protocol_error);
kexgexs.c
63
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_DH_GEX_REQUEST,
78
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_DH_GEX_REQUEST, &kex_protocol_error);
119
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_DH_GEX_INIT, &input_kex_dh_gex_init);
140
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_DH_GEX_INIT, &kex_protocol_error);
serverloop.c
928
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
929
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_DATA, &channel_input_data);
930
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
931
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
932
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
933
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
934
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
935
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
936
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
937
ssh_dispatch_set
(ssh, SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request)
[
all
...]
kexgen.c
139
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_ECDH_REPLY, &input_kex_gen_reply);
157
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_ECDH_REPLY, &kex_protocol_error);
272
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_ECDH_INIT, &input_kex_gen_init);
290
ssh_dispatch_set
(ssh, SSH2_MSG_KEX_ECDH_INIT, &kex_protocol_error);
auth2.c
190
ssh_dispatch_set
(ssh, SSH2_MSG_EXT_INFO, &kex_input_ext_info);
191
ssh_dispatch_set
(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request);
214
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_REQUEST,
230
ssh_dispatch_set
(ssh, SSH2_MSG_EXT_INFO, &dispatch_protocol_error);
349
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
350
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
449
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_REQUEST,
dispatch.c
83
ssh_dispatch_set
(struct ssh *ssh, int type, dispatch_fn *fn)
function
sshconnect2.c
481
ssh_dispatch_set
(ssh, SSH2_MSG_EXT_INFO, kex_input_ext_info);
482
ssh_dispatch_set
(ssh, SSH2_MSG_SERVICE_ACCEPT, &input_userauth_service_accept);
546
ssh_dispatch_set
(ssh, SSH2_MSG_EXT_INFO, ssh->kex->ext_info_s ?
548
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
549
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
550
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
634
ssh_dispatch_set
(ssh, SSH2_MSG_EXT_INFO, dispatch_protocol_error);
833
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
834
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
835
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error)
[
all
...]
auth2-chall.c
226
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_INFO_RESPONSE, NULL);
258
ssh_dispatch_set
(ssh, SSH2_MSG_USERAUTH_INFO_RESPONSE,
clientloop.c
2850
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
2851
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_DATA, &channel_input_data);
2852
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
2853
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
2854
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
2855
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2856
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2857
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
2858
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
2859
ssh_dispatch_set
(ssh, SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm)
[
all
...]
kex.c
404
ssh_dispatch_set
(ssh, SSH2_MSG_NEWKEYS, &kex_input_newkeys);
500
ssh_dispatch_set
(ssh, SSH2_MSG_EXT_INFO, &kex_protocol_error);
540
ssh_dispatch_set
(ssh, SSH2_MSG_EXT_INFO, &kex_input_ext_info);
541
ssh_dispatch_set
(ssh, SSH2_MSG_NEWKEYS, &kex_protocol_error);
542
ssh_dispatch_set
(ssh, SSH2_MSG_KEXINIT, &kex_input_kexinit);
631
ssh_dispatch_set
(ssh, SSH2_MSG_KEXINIT, &kex_protocol_error);
764
ssh_dispatch_set
(ssh, SSH2_MSG_KEXINIT, &kex_input_kexinit);
Completed in 58 milliseconds
Indexes created Fri Sep 18 00:27:12 UTC 2026