static void server_init_dispatch_15(void) { server_init_dispatch_13(); debug("server_init_dispatch_15"); dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose); }
static void server_init_dispatch(void) { if (compat20) server_init_dispatch_20(); else if (compat13) server_init_dispatch_13(); else server_init_dispatch_15(); }
static void server_init_dispatch(struct ssh *ssh) { if (compat20) server_init_dispatch_20(ssh); else if (compat13) server_init_dispatch_13(ssh); else server_init_dispatch_15(ssh); }
static void server_init_dispatch_15(struct ssh *ssh) { server_init_dispatch_13(ssh); debug("server_init_dispatch_15"); ssh_dispatch_set(ssh, SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); ssh_dispatch_set(ssh, SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose); }