:orphan: .. title:: CONFIG_LOG_BACKEND_NET_MAX_BUF .. kconfig:: CONFIG_LOG_BACKEND_NET_MAX_BUF 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 =================== \ :kconfig:`LOG_BACKEND_NET ` && !\ :kconfig:`LOG_FRONTEND ` && !\ :kconfig:`LOG_MINIMAL ` && \ :kconfig:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - 3 Kconfig definition ================== At ``/logging/Kconfig.backends:253`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/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.)*