int listen(int sockfd, int backlog);
Listens for new connections on socket sockfd. The maximum number of queued connections is backlog. Returns zero on success, or the negation of the error code on failure.
accept, bind, socket