:orphan: .. title:: CONFIG_NET_IPV6_FRAGMENT_TIMEOUT .. kconfig:: CONFIG_NET_IPV6_FRAGMENT_TIMEOUT CONFIG_NET_IPV6_FRAGMENT_TIMEOUT ################################ *How long to wait the fragments to receive* Type: ``int`` Help ==== .. code-block:: none How long to wait for IPv6 fragment to arrive before the reassembly will timeout. RFC 2460 chapter 4.5 tells to wait for 60 seconds but this might be too long in memory constrained devices. This value is in seconds. Direct dependencies =================== \ :kconfig:`NET_IPV6_FRAGMENT ` && \ :kconfig:`NET_IPV6 ` && !\ :kconfig:`NET_RAW_MODE ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 5 Kconfig definition ================== At ``/net/ip/Kconfig.ipv6:88`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:87`` → ``/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 .. code-block:: kconfig config NET_IPV6_FRAGMENT_TIMEOUT int "How long to wait the fragments to receive" range 1 60 default 5 depends on NET_IPV6_FRAGMENT && NET_IPV6 && !NET_RAW_MODE && NETWORKING help How long to wait for IPv6 fragment to arrive before the reassembly will timeout. RFC 2460 chapter 4.5 tells to wait for 60 seconds but this might be too long in memory constrained devices. This value is in seconds. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*