From cf39d12714e23836a295382079a8b365b1a6e07d Mon Sep 17 00:00:00 2001 From: Pieter De Gendt Date: Mon, 9 Jun 2025 15:27:52 +0200 Subject: [PATCH] net: lib: http: Select required symbols for server Select the NET_SOCKETS and EVENTFD kconfig symbols in order for the HTTP server to compile. Signed-off-by: Pieter De Gendt --- subsys/net/lib/http/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subsys/net/lib/http/Kconfig b/subsys/net/lib/http/Kconfig index a83bb722fe6..de676b0344e 100644 --- a/subsys/net/lib/http/Kconfig +++ b/subsys/net/lib/http/Kconfig @@ -34,6 +34,8 @@ menuconfig HTTP_SERVER select HTTP_PARSER select HTTP_PARSER_URL select EXPERIMENTAL + select NET_SOCKETS + select EVENTFD imply NET_IPV4_MAPPING_TO_IPV6 if NET_IPV4 && NET_IPV6 help HTTP1 and HTTP2 server support.