diff --git a/tcpfwd.h b/tcpfwd.h index 51a15758b4420ebba42b8f5b7a6213e91ece6dd6..cd04fcd65187ab9ad03ea6e100d4e4a60b1693ae 100644 --- a/tcpfwd.h +++ b/tcpfwd.h @@ -31,16 +31,16 @@ struct TCPListener { /* For a direct-tcpip request, it's the addr/port we want the other * end to connect to */ - unsigned char *sendaddr; + char *sendaddr; unsigned int sendport; /* This is the address/port that we listen on. The address has special * meanings as per the rfc, "" for all interfaces, "localhost" for * localhost, or a normal interface name. */ - unsigned char *listenaddr; + char *listenaddr; unsigned int listenport; /* The address that the remote host asked to listen on */ - unsigned char *request_listenaddr; + char *request_listenaddr; const struct ChanType *chantype; enum {direct, forwarded} tcp_type;