X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=testback.c;h=bc2eb31f498d2b8a26ae3b637f4b962788076770;hb=812870d1b304d8f22633614f59c6690c05fcc029;hp=22860f33736adb5aedd71081719d1666ac1f1846;hpb=4f7241090f293d8fc791ecffb3267ee982a86663;p=PuTTY.git diff --git a/testback.c b/testback.c index 22860f33..bc2eb31f 100644 --- a/testback.c +++ b/testback.c @@ -1,4 +1,4 @@ -/* $Id: testback.c,v 1.9 2003/05/10 11:57:55 ben Exp $ */ +/* $Id: testback.c,v 1.10 2004/06/20 17:07:32 jacob Exp $ */ /* * Copyright (c) 1999 Simon Tatham * Copyright (c) 1999 Ben Harris @@ -34,9 +34,9 @@ #include "putty.h" static const char *null_init(void *, void **, Config *, char *, int, char **, - int); + int, int); static const char *loop_init(void *, void **, Config *, char *, int, char **, - int); + int, int); static void null_free(void *); static void loop_free(void *); static void null_reconfig(void *, Config *); @@ -72,14 +72,14 @@ struct loop_state { static const char *null_init(void *frontend_handle, void **backend_handle, Config *cfg, char *host, int port, - char **realhost, int nodelay) { + char **realhost, int nodelay, int keepalive) { return NULL; } static const char *loop_init(void *frontend_handle, void **backend_handle, Config *cfg, char *host, int port, - char **realhost, int nodelay) { + char **realhost, int nodelay, int keepalive) { struct loop_state *st = snew(struct loop_state); st->term = frontend_handle;