The latest development version of this page may be more current than this released 1.14.1 version.
CONFIG_NET_UDP_MISSING_CHECKSUM

Accept missing checksum (IPv4 only)

Type: bool

Help

RFC 768 states the possibility to have a missing checksum, for debugging purposes for instance. That feature is however valid only for IPv4 and on reception only, since Zephyr will always compute the UDP checksum in transmission path.

Direct dependencies

NET_UDP && NET_IPV4 && !NET_RAW_MODE && NETWORKING

(Includes any dependencies from if’s and menus.)

Defaults

No defaults. Implicitly defaults to n.

Kconfig definition

At subsys/net/ip/Kconfig:307

Included via Kconfig:10Kconfig.zephyr:39subsys/Kconfig:24subsys/net/Kconfig:82

Menu path: (top menu) → Networking → IP stack

config NET_UDP_MISSING_CHECKSUM
    bool
    prompt "Accept missing checksum (IPv4 only)" if NET_UDP && NET_IPV4 && !NET_RAW_MODE && NETWORKING
    depends on NET_UDP && NET_IPV4 && !NET_RAW_MODE && NETWORKING
    help
      RFC 768 states the possibility to have a missing checksum, for
      debugging purposes for instance. That feature is however valid only
      for IPv4 and on reception only, since Zephyr will always compute the
      UDP checksum in transmission path.

(Definitions include propagated dependencies, including from if’s and menus.)