From: Susant Sahani Date: Thu, 5 Mar 2015 16:32:47 +0000 (+0530) Subject: networkd vxlan: Add support for enabling UDP checksums X-Git-Tag: v226.4~1^2~538 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=2dd995262538b9a71022e0591381e67a728e0887 networkd vxlan: Add support for enabling UDP checksums Add UDPCheckSum option to enable transmitting UDP checksums when doing VXLAN/IPv4. Add UDP6ZeroChecksumRx, and UDP6ZeroChecksumTx options to enable sending zero checksums and receiving zero checksums in VXLAN/IPv6 [tomegun: rebase manpage due to whitespace changes] --- diff --git a/src/libelogind/sd-hwdb/hwdb-util.h b/src/libelogind/sd-hwdb/hwdb-util.h index ee020a294..11dd0d407 100644 --- a/src/libelogind/sd-hwdb/hwdb-util.h +++ b/src/libelogind/sd-hwdb/hwdb-util.h @@ -27,5 +27,8 @@ DEFINE_TRIVIAL_CLEANUP_FUNC(sd_hwdb*, sd_hwdb_unref); #define _cleanup_hwdb_unref_ _cleanup_(sd_hwdb_unrefp) + bool udpcsum; + bool udp6zerocsumtx; + bool udp6zerocsumrx; bool hwdb_validate(sd_hwdb *hwdb);