:orphan: .. title:: DNS_NUM_CONCUR_QUERIES .. option:: CONFIG_DNS_NUM_CONCUR_QUERIES *Number of simultaneous DNS queries per one DNS context* Type: ``int`` Help ==== This defines how many concurrent DNS queries can be generated using same DNS context. Normally 1 is a good default value. Direct dependencies =================== \ :option:`DNS_RESOLVER ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/dns/Kconfig:101`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:89`` → ``subsys/net/lib/Kconfig:8`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Protocols → DNS resolver .. parsed-literal:: config DNS_NUM_CONCUR_QUERIES int "Number of simultaneous DNS queries per one DNS context" default 1 depends on \ :option:`DNS_RESOLVER ` && \ :option:`NETWORKING ` help This defines how many concurrent DNS queries can be generated using same DNS context. Normally 1 is a good default value. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*