X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/bac857ca6af6dac1d203034f93ea690f3b3c9d97..055817455466c8eb60392f30bb7c689763962e17:/testback.c diff --git a/testback.c b/testback.c index 9ca9c49e..4bfb52d8 100644 --- a/testback.c +++ b/testback.c @@ -1,4 +1,4 @@ -/* $Id: testback.c,v 1.8 2003/04/05 14:32:58 ben Exp $ */ +/* $Id$ */ /* * Copyright (c) 1999 Simon Tatham * Copyright (c) 1999 Ben Harris @@ -33,8 +33,10 @@ #include "putty.h" -static char *null_init(void *, void **, Config *, char *, int, char **, int); -static char *loop_init(void *, void **, Config *, char *, int, char **, int); +static const char *null_init(void *, void **, Config *, char *, int, char **, + int, int); +static const char *loop_init(void *, void **, Config *, char *, int, char **, + int, int); static void null_free(void *); static void loop_free(void *); static void null_reconfig(void *, Config *); @@ -55,29 +57,31 @@ static void null_unthrottle(void *, int); Backend null_backend = { null_init, null_free, null_reconfig, null_send, null_sendbuffer, null_size, null_special, null_get_specials, null_socket, null_exitcode, null_sendok, - null_ldisc, null_provide_ldisc, null_provide_logctx, null_unthrottle, 0 + null_ldisc, null_provide_ldisc, null_provide_logctx, null_unthrottle, + null_cfg_info, 0 }; Backend loop_backend = { loop_init, loop_free, null_reconfig, loop_send, null_sendbuffer, null_size, null_special, null_get_specials, null_socket, null_exitcode, null_sendok, - null_ldisc, null_provide_ldisc, null_provide_logctx, null_unthrottle, 0 + null_ldisc, null_provide_ldisc, null_provide_logctx, null_unthrottle, + null_cfg_info, 0 }; struct loop_state { Terminal *term; }; -static char *null_init(void *frontend_handle, void **backend_handle, - Config *cfg, char *host, int port, char **realhost, - int nodelay) { +static const char *null_init(void *frontend_handle, void **backend_handle, + Config *cfg, char *host, int port, + char **realhost, int nodelay, int keepalive) { return NULL; } -static char *loop_init(void *frontend_handle, void **backend_handle, - Config *cfg, char *host, int port, char **realhost, - int nodelay) { +static const char *loop_init(void *frontend_handle, void **backend_handle, + Config *cfg, char *host, int port, + char **realhost, int nodelay, int keepalive) { struct loop_state *st = snew(struct loop_state); st->term = frontend_handle; @@ -161,6 +165,12 @@ static void null_provide_logctx(void *handle, void *logctx) { } +static int null_cfg_info(void *handle) +{ + return 0; +} + + /* * Emacs magic: * Local Variables: