c
Brushing Up My C. Building A Unix Domain Socket Client/Server (PART II)
I described in this previous blog post how to build a simplistic Unix Domain Socket client/server application.The disadvantage with that approach is that the server can only handle one connection at a time (i.e. is not concurrent). This blog post explains how this can be improved by using mechanisms like…