comparison tcpfwd.h @ 578:44f486b72427

- tcpfwd bindaddr support against trunk. needs merging.
author Matt Johnston <matt@ucc.asn.au>
date Sat, 27 Feb 2010 11:51:19 +0000
parents c3f2ec71e3d4
children 8c737cd7c1af
comparison
equal deleted inserted replaced
576:c470649fb627 578:44f486b72427
46 46
47 /* A forwarding entry */ 47 /* A forwarding entry */
48 struct TCPFwdEntry { 48 struct TCPFwdEntry {
49 const unsigned char* connectaddr; 49 const unsigned char* connectaddr;
50 unsigned int connectport; 50 unsigned int connectport;
51 const unsigned char* listenaddr;
51 unsigned int listenport; 52 unsigned int listenport;
52 unsigned int have_reply; /* is set to 1 after a reply has been received 53 unsigned int have_reply; /* is set to 1 after a reply has been received
53 when setting up the forwarding */ 54 when setting up the forwarding */
54 }; 55 };
55 56