Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 389 Bytes

UnixDomainSocket.md

File metadata and controls

12 lines (8 loc) · 389 Bytes

Unix domain sockets

Unix domain socket is a method by which two processes on the same host can communicate with each other

  1. Communication is bidirectional with stream socket
  2. Communication is unidirectional with datagram sockets

Notes

  1. Only one client can connect to the host
  2. The have a files system based permissions
  3. Unix domain sockets are faster than TCP sockets