Interprocess Communication using Unix Domain Sockets
1.0 Unix Domain Sockets A socket is a communication endpoint at a host computer. The socket API provides calls for communication between processes. The socket system call is, int socket (int domain, int type, int protocol); The first parameter to the socket system call is the domain. The domain is actually the communication domain and …
Interprocess Communication using Unix Domain Sockets Read More »