Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/openssh/
H A Dserverloop.c904 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose); in server_init_dispatch()
905 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data); in server_init_dispatch()
906 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof); in server_init_dispatch()
908 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open); in server_init_dispatch()
911 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req); in server_init_dispatch()
913 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request); in server_init_dispatch()
915 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &server_input_keep_alive); in server_init_dispatch()
916 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive); in server_init_dispatch()
917 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive); in server_init_dispatch()
918 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive); in server_init_dispatch()
[all …]
H A Dclientloop.c2299 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose); in client_init_dispatch()
2300 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data); in client_init_dispatch()
2301 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof); in client_init_dispatch()
2303 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open); in client_init_dispatch()
2306 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req); in client_init_dispatch()
2308 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm); in client_init_dispatch()
2309 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm); in client_init_dispatch()
2310 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request); in client_init_dispatch()
2313 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); in client_init_dispatch()
2316 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply); in client_init_dispatch()
[all …]
H A Ddispatch.h53 #define dispatch_set(type, fn) \ macro