# sum-sockets -- how to invoke sockets # Carlos Duarte , 000425 Description ----------- On a client/server model, usually tcp connections, the steps to perform are -- server: socket create the socket bind bind it to an address/port listen creates the queue of request to accept accept accepts a call; returns a new socket to communicate from now on getpeername gets who made the call read/write close client: socket creates the sockets connect connects to an address read/write close