:orphan: .. title:: CONFIG_NET_MGMT_EVENT_QUEUE_SIZE .. kconfig:: CONFIG_NET_MGMT_EVENT_QUEUE_SIZE CONFIG_NET_MGMT_EVENT_QUEUE_SIZE ################################ *Size of event queue* Type: ``int`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`NET_MGMT_EVENT ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 16 if \ :kconfig:`NET_MGMT_EVENT_MONITOR ` - 2 Kconfig definition ================== At ``/net/ip/Kconfig.mgmt:30`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:87`` → ``/net/ip/Kconfig:853`` 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 .. code-block:: kconfig config NET_MGMT_EVENT_QUEUE_SIZE int "Size of event queue" range 1 1024 default 16 if NET_MGMT_EVENT_MONITOR default 2 depends on NET_MGMT_EVENT && 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.)*