Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 01 Dec 2025 09:33:55 +0000
From:      Olivier Certner <olce@FreeBSD.org>
To:        doc-committers@FreeBSD.org, dev-commits-doc-all@FreeBSD.org
Subject:   git: d35af498f9 - main - releases/15.0R/relnotes: Move AF_UNIX changes under "Network Protocols"
Message-ID:  <692d6103.33a30.6f206936@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help

The branch main has been updated by olce:

URL: https://cgit.FreeBSD.org/doc/commit/?id=d35af498f9f1637f6015cf49d1241f54560d84f2

commit d35af498f9f1637f6015cf49d1241f54560d84f2
Author:     Olivier Certner <olce@FreeBSD.org>
AuthorDate: 2025-12-01 09:21:47 +0000
Commit:     Olivier Certner <olce@FreeBSD.org>
CommitDate: 2025-12-01 09:32:35 +0000

    releases/15.0R/relnotes: Move AF_UNIX changes under "Network Protocols"
    
    Sponsored by:   The FreeBSD Foundation
---
 website/content/en/releases/15.0R/relnotes.adoc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/website/content/en/releases/15.0R/relnotes.adoc b/website/content/en/releases/15.0R/relnotes.adoc
index f778591997..b112b3d24a 100644
--- a/website/content/en/releases/15.0R/relnotes.adoc
+++ b/website/content/en/releases/15.0R/relnotes.adoc
@@ -793,11 +793,6 @@ gitref:83ad6d8d8eee[repository=src],
 gitref:b15ff7214020[repository=src]
 {{< sponsored "The FreeBSD Foundation" >}}
 
-The local stream (AF_UNIX/SOCK_STREAM) and sequenced packet stream (AF_UNIX/SOCK_SEQPACKET) sockets have been improved for better bulk transfer and round trip times.
-The SOCK_SEQPACKET socket has been brought to the specification and now behaves as a true stream socket, while in previous FreeBSD releases it could exhibit features of
-a datagram socket.  Applications that were using SOCK_SEQPACKET incorrectly and relied on old implementation bugs may need to be adjusted.
-gitref:d15792780760[repository=src]
-
 The effective group ID is now stored in the new `cr_gid` field of `struct cred` and has been removed as the first element of `cr_groups[]`, which now only contains the supplementary groups.
 All downstream and out-of-tree modules using `cr_groups[0]` must be fixed to use `cr_gid` instead, and surrounding code that loops on `cr_groups[]` elements excluding `cr_groups[0]`, i.e., that intends to act on supplementary groups only, also needs to be adjusted as now supplementary groups start at `&cr_groups[0]` instead of `&cr_groups[1]`.
 Code that needs to be portable to both 15.0 and earlier versions can use `cr_gid`, which existed also previously as a macro, and can test the truth value of `&cr_groups[0] != &cr_gid` to know how to browse the supplementary groups adequately.
@@ -1073,6 +1068,11 @@ Descriptors returned by man:sctp_peeloff[2] now inherit Capsicum capability man:
 gitref:ae3d7e27abc9[repository=src]
 {{< sponsored "The FreeBSD Foundation" >}}
 
+The local stream (AF_UNIX/SOCK_STREAM) and sequenced packet stream (AF_UNIX/SOCK_SEQPACKET) sockets have been improved for better bulk transfer and round trip times.
+The SOCK_SEQPACKET socket has been brought to the specification and now behaves as a true stream socket, while in previous FreeBSD releases it could exhibit features of
+a datagram socket.  Applications that were using SOCK_SEQPACKET incorrectly and relied on old implementation bugs may need to be adjusted.
+gitref:d15792780760[repository=src]
+
 [[network-general]]
 === General Network
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?692d6103.33a30.6f206936>