X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/954d5c5a66596eb50a379e81c20372e922aa89a5..7555d6a50b05d96de39b5e95cf11a8f05f0c4fd9:/portfwd.c diff --git a/portfwd.c b/portfwd.c index 1239f671..3b772599 100644 --- a/portfwd.c +++ b/portfwd.c @@ -86,6 +86,12 @@ struct PFwdPrivate { int buflen; }; +static void pfd_log(Plug plug, int type, SockAddr addr, int port, + const char *error_msg, int error_code) +{ + /* we have to dump these since we have no interface to logging.c */ +} + static int pfd_closing(Plug plug, const char *error_msg, int error_code, int calling_back) { @@ -357,6 +363,7 @@ const char *pfd_newconnect(Socket *s, char *hostname, int port, void *c, const Config *cfg, int addressfamily) { static const struct plug_function_table fn_table = { + pfd_log, pfd_closing, pfd_receive, pfd_sent, @@ -407,6 +414,7 @@ const char *pfd_newconnect(Socket *s, char *hostname, int port, static int pfd_accepting(Plug p, OSSocket sock) { static const struct plug_function_table fn_table = { + pfd_log, pfd_closing, pfd_receive, pfd_sent, @@ -466,6 +474,7 @@ const char *pfd_addforward(char *desthost, int destport, char *srcaddr, void **sockdata, int address_family) { static const struct plug_function_table fn_table = { + pfd_log, pfd_closing, pfd_receive, /* should not happen... */ pfd_sent, /* also should not happen */