How do Sockets Work?
Answer / chaitanya
The implementation is left up to the vendor of your particular unix, but from the point of view of the programmer, connection-oriented sockets work a lot like files, or pipes. The most noticeable difference, once you have your file descriptor is that read() or write() calls may actually read or write fewer bytes than requested. If this happens, then you will have to make a second call for the rest of the data. There are examples of this in the source code that accompanies the faq.
| Is This Answer Correct ? | 0 Yes | 0 No |
How come I get address already in use from bind()?
Can multiple clients connect to same socket?
Are sockets files?
How many socket connections can a server handle?
Why do we need sockets?
When will my application receive SIGPIPE?
How do I send [this] over a socket?
system choose one for me on the connect() call? Should I bind() a port number in my client program, or let the?
Where is the socket located?
How are unix domain sockets implemented?
over the socket? Is there a way to have a dynamic buffer? What does one do when one does not know how much information is coming?
What is socket programming in java?