What are Sockets?
Answer / chaitanya
Sockets are just like "worm holes" in science fiction. When things go into one end, they (should) come out of the other. Different kinds of sockets have different properties. Sockets are either connection- oriented or connectionless. Connection-oriented sockets allow for data to flow back and forth as needed, while connectionless sockets (also known as datagram sockets) allow only one message at a time to be transmitted, without an open connection. There are also different socket families. The two most common are AF_INET for internet connections, and AF_UNIX for unix IPC (interprocess communication). As stated earlier, this FAQ deals only with AF_INET sockets.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can I read ICMP errors from connected UDP sockets?
Why does the sockets buffer fill up sooner than expected?
How does unix socket work?
How do I get my server to find out the clients address / host- name?
Why do not my sockets close?
How are unix domain sockets implemented?
of the socket? Does doing a connect() call affect the receive behaviour?
What is difference between socket and websocket?
How to find other end of unix socket connection?
What is the difference between read() and recv()?
How can I bind() to a port number < 1024?
How can I be sure that UDP messages are received in order?