comparison tcpfwd.h @ 1286:7d02b83c61fd coverity

merge
author Matt Johnston <matt@ucc.asn.au>
date Fri, 18 Mar 2016 22:47:33 +0800
parents 9169e4e7cbee
children 572a7aefa188
comparison
equal deleted inserted replaced
1261:770e14154da3 1286:7d02b83c61fd
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