Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

what is the difference between read() and recv() , and between send() and write() in socket programming ? performance and speed and other behavior.

share|improve this question

4 Answers

up vote 15 down vote accepted

The only difference is that recv/send let you specify certain options for the actual operation . read/write are the 'universal' file descriptor functions while recv/send are slightly more specialized (for instance, you can set a flag to ignore SIGPIPE, or to send out-of-band messages...).

share|improve this answer

Per the first hit on Google

read() is equivalent to recv() with a flags parameter of 0. Other values for the flags parameter change the behaviour of recv(). Similarly, write() is equivalent to send() with flags == 0.

share|improve this answer
4  
This isn't the whole story. recv can only be used on a socket, and will produce an error if you try to use it on, say, STDIN_FILENO. – Joey Adams Jul 31 '11 at 5:29
1  
This thread is now the first hit on Google, Google loves stackoverflow – Eloff Jan 8 at 21:14

read() and write() are more generic, they work with any file descriptor. However, they won't work on Windows.

You can pass additional options to send() and recv(), so you may have to used them in some cases.

share|improve this answer

"Performance and speed"? Aren't those kind of ... synonyms, here?

Anyway, the recv() call takes flags that read() doesn't, which makes it more powerful, or at least more convenient. That is one difference. I don't think there is a significant performance difference, but haven't tested for it.

share|improve this answer
3  
Perhaps not having to deal with flags may be perceived as more convenient. – semaj Nov 24 '09 at 16:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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