:orphan: .. title:: CONFIG_DNS_NUM_CONCUR_QUERIES .. kconfig:: CONFIG_DNS_NUM_CONCUR_QUERIES CONFIG_DNS_NUM_CONCUR_QUERIES ############################# *Number of simultaneous DNS queries per one DNS context* Type: ``int`` Help ==== .. code-block:: none This defines how many concurrent DNS queries can be generated using same DNS context. Normally 1 is a good default value. Direct dependencies =================== \ :kconfig:`DNS_RESOLVER ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== At ``/net/lib/dns/Kconfig:110`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:89`` → ``/net/lib/Kconfig:8`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Protocols → DNS resolver .. code-block:: kconfig config DNS_NUM_CONCUR_QUERIES int "Number of simultaneous DNS queries per one DNS context" default 1 depends on DNS_RESOLVER && 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.)*