Meanwhile, On The Server (Cont.) /* ask the system to listen for incoming connections */ /* to the address we just bound. specify that up to */ /* 5 pending connection requests will be queued by the */ /* system, if we are not directly awaiting them using */ /* the accept() system call, when they arrive. */ if (listen(s, 5)) { perror("listen"); }