summaryrefslogtreecommitdiff
path: root/tcpfwd.h
diff options
context:
space:
mode:
authorFrancois Perrad <francois.perrad@gadz.org>2016-01-01 16:30:31 +0100
committerMatt Johnston <matt@ucc.asn.au>2016-03-16 22:41:20 +0800
commit3e20c442de30c583b1728500c782641f88dedbfa (patch)
treecd4fcdf5ab851bde43daea855e58d49db5598dde /tcpfwd.h
parentaf87369cb32d4e967c389cce35f508817682f077 (diff)
downloaddropbear-3e20c442de30c583b1728500c782641f88dedbfa.tar.gz
fix empty C prototypes
Diffstat (limited to 'tcpfwd.h')
-rw-r--r--tcpfwd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tcpfwd.h b/tcpfwd.h
index 64139f0..3fce879 100644
--- a/tcpfwd.h
+++ b/tcpfwd.h
@@ -57,16 +57,16 @@ struct TCPFwdEntry {
};
/* Server */
-void recv_msg_global_request_remotetcp();
+void recv_msg_global_request_remotetcp(void);
extern const struct ChanType svr_chan_tcpdirect;
/* Client */
-void setup_localtcp();
-void setup_remotetcp();
+void setup_localtcp(void);
+void setup_remotetcp(void);
extern const struct ChanType cli_chan_tcpremote;
-void cli_recv_msg_request_success();
-void cli_recv_msg_request_failure();
+void cli_recv_msg_request_success(void);
+void cli_recv_msg_request_failure(void);
/* Common */
int listen_tcpfwd(struct TCPListener* tcpinfo);