summaryrefslogtreecommitdiff
path: root/serverloop.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 /serverloop.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 'serverloop.c')
-rw-r--r--serverloop.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/serverloop.c b/serverloop.c
index d2f8d3d61..0c75b05c9 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -35,7 +35,7 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: serverloop.c,v 1.92 2001/12/28 14:50:54 markus Exp $"); 38RCSID("$OpenBSD: serverloop.c,v 1.93 2001/12/28 15:06:00 markus Exp $");
39 39
40#include "xmalloc.h" 40#include "xmalloc.h"
41#include "packet.h" 41#include "packet.h"
@@ -782,7 +782,7 @@ server_loop2(Authctxt *authctxt)
782} 782}
783 783
784static void 784static void
785server_input_channel_failure(int type, int plen, u_int32_t seq, void *ctxt) 785server_input_channel_failure(int type, u_int32_t seq, void *ctxt)
786{ 786{
787 debug("Got CHANNEL_FAILURE for keepalive"); 787 debug("Got CHANNEL_FAILURE for keepalive");
788 /* 788 /*
@@ -795,7 +795,7 @@ server_input_channel_failure(int type, int plen, u_int32_t seq, void *ctxt)
795 795
796 796
797static void 797static void
798server_input_stdin_data(int type, int plen, u_int32_t seq, void *ctxt) 798server_input_stdin_data(int type, u_int32_t seq, void *ctxt)
799{ 799{
800 char *data; 800 char *data;
801 u_int data_len; 801 u_int data_len;
@@ -812,7 +812,7 @@ server_input_stdin_data(int type, int plen, u_int32_t seq, void *ctxt)
812} 812}
813 813
814static void 814static void
815server_input_eof(int type, int plen, u_int32_t seq, void *ctxt) 815server_input_eof(int type, u_int32_t seq, void *ctxt)
816{ 816{
817 /* 817 /*
818 * Eof from the client. The stdin descriptor to the 818 * Eof from the client. The stdin descriptor to the
@@ -825,7 +825,7 @@ server_input_eof(int type, int plen, u_int32_t seq, void *ctxt)
825} 825}
826 826
827static void 827static void
828server_input_window_size(int type, int plen, u_int32_t seq, void *ctxt) 828server_input_window_size(int type, u_int32_t seq, void *ctxt)
829{ 829{
830 int row = packet_get_int(); 830 int row = packet_get_int();
831 int col = packet_get_int(); 831 int col = packet_get_int();
@@ -903,7 +903,7 @@ server_request_session(char *ctype)
903} 903}
904 904
905static void 905static void
906server_input_channel_open(int type, int plen, u_int32_t seq, void *ctxt) 906server_input_channel_open(int type, u_int32_t seq, void *ctxt)
907{ 907{
908 Channel *c = NULL; 908 Channel *c = NULL;
909 char *ctype; 909 char *ctype;
@@ -953,7 +953,7 @@ server_input_channel_open(int type, int plen, u_int32_t seq, void *ctxt)
953} 953}
954 954
955static void 955static void
956server_input_global_request(int type, int plen, u_int32_t seq, void *ctxt) 956server_input_global_request(int type, u_int32_t seq, void *ctxt)
957{ 957{
958 char *rtype; 958 char *rtype;
959 int want_reply; 959 int want_reply;