:orphan: .. title:: LOG_BACKEND_NET_MAX_BUF .. option:: CONFIG_LOG_BACKEND_NET_MAX_BUF *How many network buffers to allocate for sending messages* Type: ``int`` Help ==== .. code-block:: none Each syslog message should fit into a network packet that will be sent to server. This number tells how many syslog messages can be in transit to the server. Direct dependencies =================== \ :option:`LOG_BACKEND_NET ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - 3 Kconfig definition ================== At ``/logging/Kconfig.backends:257`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``/Kconfig:31`` → ``/logging/Kconfig:23`` Menu path: (Top) → Sub Systems and OS Services → Logging → Backends → Enable networking backend .. code-block:: kconfig config LOG_BACKEND_NET_MAX_BUF int "How many network buffers to allocate for sending messages" range 3 256 default 3 depends on LOG_BACKEND_NET && !LOG_FRONTEND && !LOG_MINIMAL && LOG help Each syslog message should fit into a network packet that will be sent to server. This number tells how many syslog messages can be in transit to the server. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*