コード例 #1
0
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);
}
コード例 #2
0
static void
server_init_dispatch(void)
{
	if (compat20)
		server_init_dispatch_20();
	else if (compat13)
		server_init_dispatch_13();
	else
		server_init_dispatch_15();
}
コード例 #3
0
ファイル: serverloop.c プロジェクト: cafeinecake/libopenssh
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);
}
コード例 #4
0
ファイル: serverloop.c プロジェクト: cafeinecake/libopenssh
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);
}