From 81a3d764a097b6a4f1f91fc40570590c18c35b68 Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Thu, 23 May 2024 14:33:09 +0300 Subject: [PATCH] doc: migration-guide-3.7: Add info for DNS resolver and responder Add information about DNS resolver and mDNS/LLMNR responders which are converted to use the socket services API. Signed-off-by: Jukka Rissanen --- doc/releases/migration-guide-3.7.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/releases/migration-guide-3.7.rst b/doc/releases/migration-guide-3.7.rst index 27834decc3f..fb7587ad1c5 100644 --- a/doc/releases/migration-guide-3.7.rst +++ b/doc/releases/migration-guide-3.7.rst @@ -470,6 +470,11 @@ Networking during a Coap Block-wise transfer. Any post write, validate or some firmware callbacks should be updated to include this parameter. (:github:`72590`) +* The DNS resolver and mDNS/LLMNR responders are converted to use socket service API. + This means that the number of pollable sockets in the system might need to be increased. + Please check that the values of :kconfig:option:`CONFIG_NET_SOCKETS_POLL_MAX` and + :kconfig:option:`CONFIG_POSIX_MAX_FDS` are high enough. Unfortunately no exact values + for these can be given as it depends on application needs and usage. (:github:`72834`) Other Subsystems