Strategies For Multi-Client Servers (Cont) Process Pre-Forking With Multiple Acceptors- a pool of pre-forked processes all wait on accept(), and each new connection is handed randomally to one of them, by the OS. Advantage - handling of new connections requires no IPC, and no process synchronization; Disadvantages - almost the same as for the process pre-forking method, except for the above.