At the moment I'm implementing a TCP server (DDT) in one of my programs. It needs to communicate with a third party client. (written in VC6). I'm testing at the moment with the echoserv and eclient examples. The problem:
- Eclient -> Echoserv : OK.
- Eclient -> VC6 test TCP server. : OK.
- VC6 client -> VC6 TCP server. : OK.
- VC6 client -> Echoserv : Does not work
VC6 client returns: connection is refused. (application uses Port 21000)
When I look with WinNT's netstat, it says that my TCP server listens on 71.31.1.1:21000 (my primary IP address), while the VC6 TCP server is said to listen on 0.0.0.0:21000 ???
Why???
-------------
Peter.
[This message has been edited by Peter Lameijn (edited June 24, 2000).]
- Eclient -> Echoserv : OK.
- Eclient -> VC6 test TCP server. : OK.
- VC6 client -> VC6 TCP server. : OK.
- VC6 client -> Echoserv : Does not work

VC6 client returns: connection is refused. (application uses Port 21000)
When I look with WinNT's netstat, it says that my TCP server listens on 71.31.1.1:21000 (my primary IP address), while the VC6 TCP server is said to listen on 0.0.0.0:21000 ???
Why???
-------------
Peter.
[This message has been edited by Peter Lameijn (edited June 24, 2000).]
Comment