C network programming? C network programming? unix unix

C network programming?


The fastest way would be to use the OS's networking functions: socket(), setsockopt(), connect(), listen(), send(), recv() etc. etc.

There are subtle differences between them on several OS's.

To cope with this, there are wrappers around them in several libraries, e.g. in Qt (at least, IIRC). I don't think anything will noticeably slow down if you use them...


What about ZeroMQ. [http://www.zeromq.org/][1]

It's a faster, easy to code and also can be used as Message Queue.