vote up 1 vote down star
1

I want to do socket programming in C. Where client and server are exchanging messages. I have the sample codes with me, but i wanted some elaborate links and tutorials for socket programming C, so that i can write effective and error free code. I will be working with WinSock library and not on Linux. Any help?

flag

77% accept rate

4 Answers

vote up 6 vote down check

I think the standard response to this question is:

http://beej.us/guide/bgnet/

link|flag
a quick question, is the guide applicable to WinSock as well? is the WinSock api similar to sys/socket.h? – Anirudh Goel Apr 15 at 16:20
Yes, it is applicable to Winsock as well. Winsock is based off of BSD sockets, which is what the guide covers. In Beej's guide, read "1.5. Note for Windows Programmers". – Andrew Top Apr 15 at 16:52
vote up 2 vote down

If found this book - Effective TCP/IP Programming

(some older edition though) to be quite enlightening some time in the past.

And the all time book "UNIX Network Programming" by W. Richard Stevens is a great source to learn from and understand how it all works.

link|flag
vote up 2 vote down

See basic samples, Complete Client Code and Complete Server Code. All part of the original, and necessary, Winsock Reference .

link|flag
thanks and i've been there already, needed some thing more to it, so i asked. – Anirudh Goel Apr 16 at 7:29
vote up 1 vote down

Install Windows® Server 2003 R2 Platform SDK Full Download this have samples a lot.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.