Mercurial > dropbear
diff tcpfwd.h @ 1276:9169e4e7cbee
fix empty C prototypes
author | Francois Perrad <francois.perrad@gadz.org> |
---|---|
date | Fri, 01 Jan 2016 16:30:31 +0100 |
parents | 3d9519ec2b85 |
children | 572a7aefa188 |
line wrap: on
line diff
--- a/tcpfwd.h Fri Jan 01 09:46:09 2016 +0100 +++ b/tcpfwd.h Fri Jan 01 16:30:31 2016 +0100 @@ -57,16 +57,16 @@ }; /* 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);