You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The unix-stream() and unix-dgram() drivers open an AF_UNIX socket and
start listening on it for messages. The unix-stream() driver is
primarily used on Linux and uses SOCK_STREAM semantics (connection
oriented, no messages are lost), while unix-dgram() is used on BSDs and
uses SOCK_DGRAM semantics: this may result in lost local messages if
start listening on it for messages. On Linux both the unix-stream() and unix-dgram() drivers are used and are always reliable. The unix-stream() driver uses SOCK_STREAM semantics (connection
oriented, no messages are lost),
while unix-dgram() is used on BSDs and uses SOCK_DGRAM semantics: this may result in lost local messages if