X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/2e96d5041e9e7a241d14305ae3e89637476c4968..a460b361fe6734325bead016ef2dd39e4da302f4:/testback.c diff --git a/testback.c b/testback.c index 70f22951..e24217c0 100644 --- a/testback.c +++ b/testback.c @@ -1,4 +1,4 @@ -/* $Id: testback.c,v 1.5 2003/01/12 16:11:27 ben Exp $ */ +/* $Id: testback.c,v 1.7 2003/03/29 16:14:26 simon Exp $ */ /* * Copyright (c) 1999 Simon Tatham * Copyright (c) 1999 Ben Harris @@ -35,6 +35,8 @@ static char *null_init(void *, void **, Config *, char *, int, char **, int); static char *loop_init(void *, void **, Config *, char *, int, char **, int); +static void null_free(void *); +static void loop_free(void *); static void null_reconfig(void *, Config *); static int null_send(void *, char *, int); static int loop_send(void *, char *, int); @@ -50,13 +52,13 @@ static void null_provide_logctx(void *, void *); static void null_unthrottle(void *, int); Backend null_backend = { - null_init, null_reconfig, null_send, null_sendbuffer, null_size, + null_init, null_free, null_reconfig, null_send, null_sendbuffer, null_size, null_special, null_socket, null_exitcode, null_sendok, null_ldisc, null_provide_ldisc, null_provide_logctx, null_unthrottle, 0 }; Backend loop_backend = { - loop_init, null_reconfig, loop_send, null_sendbuffer, null_size, + loop_init, loop_free, null_reconfig, loop_send, null_sendbuffer, null_size, null_special, null_socket, null_exitcode, null_sendok, null_ldisc, null_provide_ldisc, null_provide_logctx, null_unthrottle, 0 }; @@ -75,13 +77,24 @@ static char *null_init(void *frontend_handle, void **backend_handle, static char *loop_init(void *frontend_handle, void **backend_handle, Config *cfg, char *host, int port, char **realhost, int nodelay) { - struct loop_state *st = smalloc(sizeof(*st)); + struct loop_state *st = snew(struct loop_state); st->term = frontend_handle; *backend_handle = st; return NULL; } +static void null_free(void *handle) +{ + +} + +static void loop_free(void *handle) +{ + + sfree(handle); +} + static void null_reconfig(void *handle, Config *cfg) { }