summaryrefslogtreecommitdiff
path: root/serverloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'serverloop.c')
-rw-r--r--serverloop.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/serverloop.c b/serverloop.c
index 2976f5594..ea07eef23 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: serverloop.c,v 1.191 2017/02/01 02:59:09 dtucker Exp $ */ 1/* $OpenBSD: serverloop.c,v 1.192 2017/05/30 14:23:52 markus Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -417,7 +417,7 @@ server_loop2(Authctxt *authctxt)
417} 417}
418 418
419static int 419static int
420server_input_keep_alive(int type, u_int32_t seq, void *ctxt) 420server_input_keep_alive(int type, u_int32_t seq, struct ssh *ssh)
421{ 421{
422 debug("Got %d/%u for keepalive", type, seq); 422 debug("Got %d/%u for keepalive", type, seq);
423 /* 423 /*
@@ -579,7 +579,7 @@ server_request_session(void)
579} 579}
580 580
581static int 581static int
582server_input_channel_open(int type, u_int32_t seq, void *ctxt) 582server_input_channel_open(int type, u_int32_t seq, struct ssh *ssh)
583{ 583{
584 Channel *c = NULL; 584 Channel *c = NULL;
585 char *ctype; 585 char *ctype;
@@ -703,7 +703,7 @@ server_input_hostkeys_prove(struct sshbuf **respp)
703} 703}
704 704
705static int 705static int
706server_input_global_request(int type, u_int32_t seq, void *ctxt) 706server_input_global_request(int type, u_int32_t seq, struct ssh *ssh)
707{ 707{
708 char *rtype; 708 char *rtype;
709 int want_reply; 709 int want_reply;
@@ -810,7 +810,7 @@ server_input_global_request(int type, u_int32_t seq, void *ctxt)
810} 810}
811 811
812static int 812static int
813server_input_channel_req(int type, u_int32_t seq, void *ctxt) 813server_input_channel_req(int type, u_int32_t seq, struct ssh *ssh)
814{ 814{
815 Channel *c; 815 Channel *c;
816 int id, reply, success = 0; 816 int id, reply, success = 0;