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
The unix-stream() and unix-dgram() drivers open an AF_UNIX socket and
7
-
start listening on it for messages. The unix-stream() driver is
8
-
primarily used on Linux and uses SOCK_STREAM semantics (connection
9
-
oriented, no messages are lost), while unix-dgram() is used on BSDs and
10
-
uses SOCK_DGRAM semantics: this may result in lost local messages if
7
+
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
8
+
oriented, no messages are lost),
9
+
while unix-dgram() is used on BSDs and uses SOCK_DGRAM semantics: this may result in lost local messages if
0 commit comments