What is an example of socket programming?
An internet file server
What does socket mean?
Create a new communication end point
What does bind mean?
Attach a local address to a socket
What does listen mean?
Announce willingness to accept connections; give queue size
What does accept mean?
Block the caller until a connection attempt arrives
What does connect mean?
Actively attempt to establish a connection
What does send mean?
Send some data over the connection
What does receive mean?
Receive some data from the connection
What does close mean?
Release the connection