Answer Posted / 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 |
Post New Answer View All Answers
Can a socket have multiple ports?
Can multiple sockets use the same port?
Why does the sockets buffer fill up sooner than expected?
Is tcp or unix socket faster?
How can I write a multi-homed server?
Where is the socket located?
What is a socket api?
Is socket a hardware or software?
What is a socket file?
What is socket programming in java?
How do I use TCP_NODELAY?
How does a socket work?
What exactly is a socket?
What is a sae socket?
system choose one for me on the connect() call? Should I bind() a port number in my client program, or let the?