On 4/28/06, Roshan d_rosh2001@yahoo.co.in wrote:
I am using the port 4000 in socket programming, locally creating a server and client for accessing, but the server program does not seem to create the server, while it does in windows :(...
Hello Roshan You can check whether the server is created and using the port 4000 by keying netcat -anlp | grep 4000 It should return an entry for your server process. Another thing that would help is to check the return value of the socket(), bind(), connect() calls. Hope it helps. -- Apoorva Kulkarni