summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:17:30 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:17:30 +1100
commit630d6f4479df4084ef05ce233c11e66c68a98a4f (patch)
tree27dc26ac3fd5bb1131ca39187899dfe2494117c4 /clientloop.c
parentdff5099f13e2e679b93d3cfe7073c9cd92b19b06 (diff)
- markus@cvs.openbsd.org 2001/12/28 15:06:00
[auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c dispatch.h kex.c kex.h serverloop.c ssh.c sshconnect2.c] remove plen from the dispatch fn. it's no longer used.
Diffstat (limited to 'clientloop.c')
-rw-r--r--clientloop.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/clientloop.c b/clientloop.c
index 3231b212e..e66b60cf5 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -59,7 +59,7 @@
59 */ 59 */
60 60
61#include "includes.h" 61#include "includes.h"
62RCSID("$OpenBSD: clientloop.c,v 1.93 2001/12/28 12:14:27 markus Exp $"); 62RCSID("$OpenBSD: clientloop.c,v 1.94 2001/12/28 15:06:00 markus Exp $");
63 63
64#include "ssh.h" 64#include "ssh.h"
65#include "ssh1.h" 65#include "ssh1.h"
@@ -1008,7 +1008,7 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
1008/*********/ 1008/*********/
1009 1009
1010static void 1010static void
1011client_input_stdout_data(int type, int plen, u_int32_t seq, void *ctxt) 1011client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
1012{ 1012{
1013 u_int data_len; 1013 u_int data_len;
1014 char *data = packet_get_string(&data_len); 1014 char *data = packet_get_string(&data_len);
@@ -1018,7 +1018,7 @@ client_input_stdout_data(int type, int plen, u_int32_t seq, void *ctxt)
1018 xfree(data); 1018 xfree(data);
1019} 1019}
1020static void 1020static void
1021client_input_stderr_data(int type, int plen, u_int32_t seq, void *ctxt) 1021client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
1022{ 1022{
1023 u_int data_len; 1023 u_int data_len;
1024 char *data = packet_get_string(&data_len); 1024 char *data = packet_get_string(&data_len);
@@ -1028,7 +1028,7 @@ client_input_stderr_data(int type, int plen, u_int32_t seq, void *ctxt)
1028 xfree(data); 1028 xfree(data);
1029} 1029}
1030static void 1030static void
1031client_input_exit_status(int type, int plen, u_int32_t seq, void *ctxt) 1031client_input_exit_status(int type, u_int32_t seq, void *ctxt)
1032{ 1032{
1033 exit_status = packet_get_int(); 1033 exit_status = packet_get_int();
1034 packet_check_eom(); 1034 packet_check_eom();
@@ -1149,7 +1149,7 @@ client_request_agent(const char *request_type, int rchan)
1149 1149
1150/* XXXX move to generic input handler */ 1150/* XXXX move to generic input handler */
1151static void 1151static void
1152client_input_channel_open(int type, int plen, u_int32_t seq, void *ctxt) 1152client_input_channel_open(int type, u_int32_t seq, void *ctxt)
1153{ 1153{
1154 Channel *c = NULL; 1154 Channel *c = NULL;
1155 char *ctype; 1155 char *ctype;
@@ -1201,7 +1201,7 @@ client_input_channel_open(int type, int plen, u_int32_t seq, void *ctxt)
1201 xfree(ctype); 1201 xfree(ctype);
1202} 1202}
1203static void 1203static void
1204client_input_channel_req(int type, int plen, u_int32_t seq, void *ctxt) 1204client_input_channel_req(int type, u_int32_t seq, void *ctxt)
1205{ 1205{
1206 Channel *c = NULL; 1206 Channel *c = NULL;
1207 int id, reply, success = 0; 1207 int id, reply, success = 0;