mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-20 00:50:09 +00:00
- djm@cvs.openbsd.org 2006/03/30 09:41:25
[channels.c] ARGSUSED for dispatch table-driven functions
This commit is contained in:
parent
89c3fe4a9e
commit
d79b424e8a
@ -20,6 +20,9 @@
|
||||
[ssh-agent.c]
|
||||
use strtonum() to parse the pid from the file, and range check it
|
||||
better; ok djm
|
||||
- djm@cvs.openbsd.org 2006/03/30 09:41:25
|
||||
[channels.c]
|
||||
ARGSUSED for dispatch table-driven functions
|
||||
|
||||
20060326
|
||||
- OpenBSD CVS Sync
|
||||
@ -4469,4 +4472,4 @@
|
||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||
|
||||
$Id: ChangeLog,v 1.4293 2006/03/31 12:11:28 djm Exp $
|
||||
$Id: ChangeLog,v 1.4294 2006/03/31 12:11:44 djm Exp $
|
||||
|
13
channels.c
13
channels.c
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: channels.c,v 1.248 2006/03/28 01:52:28 deraadt Exp $ */
|
||||
/* $OpenBSD: channels.c,v 1.249 2006/03/30 09:41:25 djm Exp $ */
|
||||
/*
|
||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||
@ -1945,6 +1945,8 @@ channel_output_poll(void)
|
||||
|
||||
|
||||
/* -- protocol input */
|
||||
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_data(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
@ -2004,6 +2006,7 @@ channel_input_data(int type, u_int32_t seq, void *ctxt)
|
||||
xfree(data);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
@ -2050,6 +2053,7 @@ channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
|
||||
xfree(data);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_ieof(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
@ -2073,6 +2077,7 @@ channel_input_ieof(int type, u_int32_t seq, void *ctxt)
|
||||
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_close(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
@ -2111,6 +2116,7 @@ channel_input_close(int type, u_int32_t seq, void *ctxt)
|
||||
}
|
||||
|
||||
/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_oclose(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
@ -2123,6 +2129,7 @@ channel_input_oclose(int type, u_int32_t seq, void *ctxt)
|
||||
chan_rcvd_oclose(c);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
@ -2139,6 +2146,7 @@ channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
|
||||
channel_free(c);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
@ -2186,6 +2194,7 @@ reason2txt(int reason)
|
||||
return "unknown reason";
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
@ -2217,6 +2226,7 @@ channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
|
||||
channel_free(c);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
@ -2241,6 +2251,7 @@ channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
|
||||
c->remote_window += adjust;
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
void
|
||||
channel_input_port_open(int type, u_int32_t seq, void *ctxt)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user