:orphan: .. title:: NET_MGMT_EVENT_QUEUE_SIZE .. option:: CONFIG_NET_MGMT_EVENT_QUEUE_SIZE *Size of event queue* Type: ``int`` Help ==== Numbers of events which can be queued at same time. Note that if a 3rd event comes in, the first will be removed without generating any notification. Thus the size of this queue has to be tweaked depending on the load of the system, planned for the usage. Direct dependencies =================== \ :option:`NET_MGMT_EVENT ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 16 if \ :option:`NET_MGMT_EVENT_MONITOR ` - 2 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/ip/Kconfig.mgmt:30`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:87`` → ``subsys/net/ip/Kconfig:828`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → IP stack → Network Management API → Add support for runtime network event notifications .. parsed-literal:: config NET_MGMT_EVENT_QUEUE_SIZE int "Size of event queue" range 1 1024 default 16 if \ :option:`NET_MGMT_EVENT_MONITOR ` default 2 depends on \ :option:`NET_MGMT_EVENT ` && \ :option:`NETWORKING ` help Numbers of events which can be queued at same time. Note that if a 3rd event comes in, the first will be removed without generating any notification. Thus the size of this queue has to be tweaked depending on the load of the system, planned for the usage. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*