: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 ==== 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 ================== .. highlight:: kconfig At ``subsys/logging/Kconfig.backends:216`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:31`` → ``subsys/logging/Kconfig:25`` Menu path: (Top) → Sub Systems and OS Services → Logging → Backends → Enable networking backend .. parsed-literal:: config LOG_BACKEND_NET_MAX_BUF int "How many network buffers to allocate for sending messages" range 3 256 default 3 depends on \ :option:`LOG_BACKEND_NET ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`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.)*