:orphan: .. title:: NET_IPV6_FRAGMENT_MAX_COUNT .. option:: CONFIG_NET_IPV6_FRAGMENT_MAX_COUNT *How many packets to reassemble at a time* Type: ``int`` Help ==== How many fragmented IPv6 packets can be waiting reassembly simultaneously. Each fragment count might use up to 1280 bytes of memory so you need to plan this and increase the network buffer count. Direct dependencies =================== \ :option:`NET_IPV6_FRAGMENT ` && \ :option:`NET_IPV6 ` && !\ :option:`NET_RAW_MODE ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/ip/Kconfig.ipv6:60`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:87`` → ``subsys/net/ip/Kconfig:115`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → IP stack → IPv6 → Support IPv6 fragmentation .. parsed-literal:: config NET_IPV6_FRAGMENT_MAX_COUNT int "How many packets to reassemble at a time" range 1 16 default 1 depends on \ :option:`NET_IPV6_FRAGMENT ` && \ :option:`NET_IPV6 ` && !\ :option:`NET_RAW_MODE ` && \ :option:`NETWORKING ` help How many fragmented IPv6 packets can be waiting reassembly simultaneously. Each fragment count might use up to 1280 bytes of memory so you need to plan this and increase the network buffer count. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*