Re: TCP Client - Server : 10.10.1.15 to 10.10.1.4

2001-11-29 Thread Eric G. Miller
You might try something that compiles first... Hint: #include , fix memset(), check return values of socket/bind/listen/connect, and supply a readline() function. Fix those problems and it'll work... $ gcc -g -Wall -o server server.c server.c:15: warning: return type of `main' is not `int' serv

TCP Client - Server : 10.10.1.15 to 10.10.1.4

2001-11-29 Thread shyamk
Good Morning everybody , I wish to return to my TCP Client/Server question. (server on 10.10.1.4 port 9888) (and client on 10.10.1.15) . The following is my Server & then (at the botttom) my client :- x //Server #include #include #include #inclu