Mercurial > dropbear
comparison 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 |
comparison
equal
deleted
inserted
replaced
1275:d49bda490798 | 1276:9169e4e7cbee |
---|---|
55 unsigned int have_reply; /* is set to 1 after a reply has been received | 55 unsigned int have_reply; /* is set to 1 after a reply has been received |
56 when setting up the forwarding */ | 56 when setting up the forwarding */ |
57 }; | 57 }; |
58 | 58 |
59 /* Server */ | 59 /* Server */ |
60 void recv_msg_global_request_remotetcp(); | 60 void recv_msg_global_request_remotetcp(void); |
61 | 61 |
62 extern const struct ChanType svr_chan_tcpdirect; | 62 extern const struct ChanType svr_chan_tcpdirect; |
63 | 63 |
64 /* Client */ | 64 /* Client */ |
65 void setup_localtcp(); | 65 void setup_localtcp(void); |
66 void setup_remotetcp(); | 66 void setup_remotetcp(void); |
67 extern const struct ChanType cli_chan_tcpremote; | 67 extern const struct ChanType cli_chan_tcpremote; |
68 void cli_recv_msg_request_success(); | 68 void cli_recv_msg_request_success(void); |
69 void cli_recv_msg_request_failure(); | 69 void cli_recv_msg_request_failure(void); |
70 | 70 |
71 /* Common */ | 71 /* Common */ |
72 int listen_tcpfwd(struct TCPListener* tcpinfo); | 72 int listen_tcpfwd(struct TCPListener* tcpinfo); |
73 int tcp_prio_inithandler(struct Channel* chan); | 73 int tcp_prio_inithandler(struct Channel* chan); |
74 | 74 |