From bcdfddbd9e596edf2fccbd95be0870fcf0e98f35 Mon Sep 17 00:00:00 2001 From: "Zsolt Gyulai (zgyulai)" Date: Wed, 9 Oct 2024 11:57:55 +0200 Subject: [PATCH 1/2] Adjusted description to state that unix domain sockets are reliable. Signed-off-by: Zsolt Gyulai (zgyulai) --- .../060_Sources/220_unix-stream_unix-dgram/README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/_admin-guide/060_Sources/220_unix-stream_unix-dgram/README.md b/doc/_admin-guide/060_Sources/220_unix-stream_unix-dgram/README.md index 53e9a3fd..bbc17814 100644 --- a/doc/_admin-guide/060_Sources/220_unix-stream_unix-dgram/README.md +++ b/doc/_admin-guide/060_Sources/220_unix-stream_unix-dgram/README.md @@ -4,10 +4,8 @@ short_title: unix-stream, unix-dgram id: adm-src-unix description: >- 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, + while unix-dgram() is used on BSDs and uses SOCK_DGRAM semantics: this may result in lost local messages if the system is overloaded. --- From 198c117e238ec30e5920c02f944dbe5a91072d77 Mon Sep 17 00:00:00 2001 From: "Zsolt Gyulai (zgyulai)" Date: Tue, 4 Feb 2025 14:08:18 +0100 Subject: [PATCH 2/2] Adjusted to include SOCK_STREAM semanticsAdjusted to include SOCK_STREAM semantics.. Signed-off-by: Zsolt Gyulai (zgyulai) --- .../060_Sources/220_unix-stream_unix-dgram/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/_admin-guide/060_Sources/220_unix-stream_unix-dgram/README.md b/doc/_admin-guide/060_Sources/220_unix-stream_unix-dgram/README.md index bbc17814..e14bae7c 100644 --- a/doc/_admin-guide/060_Sources/220_unix-stream_unix-dgram/README.md +++ b/doc/_admin-guide/060_Sources/220_unix-stream_unix-dgram/README.md @@ -4,7 +4,8 @@ short_title: unix-stream, unix-dgram id: adm-src-unix description: >- The unix-stream() and unix-dgram() drivers open an AF_UNIX socket and - start listening on it for messages. On Linux both the unix-stream() and unix-dgram() drivers are used and are always reliable, + 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 the system is overloaded. ---