CONFIG_NET_BUF_USER_DATA_SIZE¶
Size of user_data available in every network buffer
Type: int
Help¶
Amount of memory reserved in each network buffer for user data. In
most cases this can be left as the default value.
Direct dependencies¶
(Includes any dependencies from ifs and menus.)
Defaults¶
24 if
MCUMGR_SMP_UDP
&&MCUMGR_SMP_UDP_IPV6
8 if
MCUMGR_SMP_UDP
&&MCUMGR_SMP_UDP_IPV4
8 if ((
BT
||NET_TCP2
) &&64BIT
) ||BT_ISO
||MCUMGR_SMP_BT
4
Kconfig definition¶
At subsys/net/Kconfig:16
Included via Kconfig:8
→ Kconfig.zephyr:44
→ subsys/Kconfig:39
Menu path: (Top) → Sub Systems and OS Services → Networking → Network buffer support
config NET_BUF_USER_DATA_SIZE
int "Size of user_data available in every network buffer"
range 4 65535 if BT || NET_TCP2
range 0 65535
default 24 if MCUMGR_SMP_UDP && MCUMGR_SMP_UDP_IPV6
default 8 if MCUMGR_SMP_UDP && MCUMGR_SMP_UDP_IPV4
default 8 if ((BT || NET_TCP2) && 64BIT) || BT_ISO || MCUMGR_SMP_BT
default 4
depends on NET_BUF
help
Amount of memory reserved in each network buffer for user data. In
most cases this can be left as the default value.
(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)