summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
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 7400a17a6..845307eba 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.35 2000/09/14 20:25:14 markus Exp $"); 62RCSID("$OpenBSD: clientloop.c,v 1.36 2000/09/21 11:25:33 markus Exp $");
63 63
64#include "xmalloc.h" 64#include "xmalloc.h"
65#include "ssh.h" 65#include "ssh.h"
@@ -771,7 +771,7 @@ client_process_output(fd_set * writeset)
771void 771void
772client_process_buffered_input_packets() 772client_process_buffered_input_packets()
773{ 773{
774 dispatch_run(DISPATCH_NONBLOCK, &quit_pending); 774 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, NULL);
775} 775}
776 776
777/* scan buf[] for '~' before sending data to the peer */ 777/* scan buf[] for '~' before sending data to the peer */
@@ -978,7 +978,7 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
978/*********/ 978/*********/
979 979
980void 980void
981client_input_stdout_data(int type, int plen) 981client_input_stdout_data(int type, int plen, void *ctxt)
982{ 982{
983 unsigned int data_len; 983 unsigned int data_len;
984 char *data = packet_get_string(&data_len); 984 char *data = packet_get_string(&data_len);
@@ -989,7 +989,7 @@ client_input_stdout_data(int type, int plen)
989 xfree(data); 989 xfree(data);
990} 990}
991void 991void
992client_input_stderr_data(int type, int plen) 992client_input_stderr_data(int type, int plen, void *ctxt)
993{ 993{
994 unsigned int data_len; 994 unsigned int data_len;
995 char *data = packet_get_string(&data_len); 995 char *data = packet_get_string(&data_len);
@@ -1000,7 +1000,7 @@ client_input_stderr_data(int type, int plen)
1000 xfree(data); 1000 xfree(data);
1001} 1001}
1002void 1002void
1003client_input_exit_status(int type, int plen) 1003client_input_exit_status(int type, int plen, void *ctxt)
1004{ 1004{
1005 packet_integrity_check(plen, 4, type); 1005 packet_integrity_check(plen, 4, type);
1006 exit_status = packet_get_int(); 1006 exit_status = packet_get_int();
@@ -1018,7 +1018,7 @@ client_input_exit_status(int type, int plen)
1018 1018
1019/* XXXX move to generic input handler */ 1019/* XXXX move to generic input handler */
1020void 1020void
1021client_input_channel_open(int type, int plen) 1021client_input_channel_open(int type, int plen, void *ctxt)
1022{ 1022{
1023 Channel *c = NULL; 1023 Channel *c = NULL;
1024 char *ctype; 1024 char *ctype;