From cd3dcf788a3764dd526919fe13b960f1bf14ff4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fin=20Maa=C3=9F?= Date: Wed, 23 Oct 2024 16:44:43 +0200 Subject: [PATCH] net: socket: service: mark as unstable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As the socket service API is currently used by mutiple applications (dhcpv4 server, dns, telnet), it should be marked as unstable, according to the docs: https://docs.zephyrproject.org/latest/develop/api/api_lifecycle.html Signed-off-by: Fin Maaß --- include/zephyr/net/socket_service.h | 2 +- subsys/net/lib/sockets/Kconfig | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/zephyr/net/socket_service.h b/include/zephyr/net/socket_service.h index 4b6aaf23bbb..045d98dd546 100644 --- a/include/zephyr/net/socket_service.h +++ b/include/zephyr/net/socket_service.h @@ -19,7 +19,7 @@ * @brief BSD socket service API * @defgroup bsd_socket_service BSD socket service API * @since 3.6 - * @version 0.1.0 + * @version 0.2.0 * @ingroup networking * @{ */ diff --git a/subsys/net/lib/sockets/Kconfig b/subsys/net/lib/sockets/Kconfig index b46a871467c..e694c7b9e3f 100644 --- a/subsys/net/lib/sockets/Kconfig +++ b/subsys/net/lib/sockets/Kconfig @@ -101,8 +101,7 @@ config NET_SOCKET_MAX_SEND_WAIT returning an ENOBUFS error. config NET_SOCKETS_SERVICE - bool "Socket service support [EXPERIMENTAL]" - select EXPERIMENTAL + bool "Socket service support" select EVENTFD help The socket service can monitor multiple sockets and save memory