diff options
author | Szabolcs Nagy <nsz@port70.net> | 2015-04-14 21:56:37 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-04-17 22:31:27 -0400 |
commit | 1bfeb1dcd00247b3976a7a5d74b09653573e6af3 (patch) | |
tree | e3b6b6dc657e69c7d256892d536df52f35c028bb /include | |
parent | 87c62d06e4398954760a43253d374df99e5e036f (diff) | |
download | musl-1bfeb1dcd00247b3976a7a5d74b09653573e6af3.tar.gz musl-1bfeb1dcd00247b3976a7a5d74b09653573e6af3.tar.bz2 musl-1bfeb1dcd00247b3976a7a5d74b09653573e6af3.tar.xz musl-1bfeb1dcd00247b3976a7a5d74b09653573e6af3.zip |
add IP_CHECKSUM socket option to netinet/in.h
new in linux v4.0, commit ad6f939ab193750cc94a265f58e007fb598c97b7
Diffstat (limited to 'include')
-rw-r--r-- | include/netinet/in.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/netinet/in.h b/include/netinet/in.h index 4b3f2b0b..1ed3e6fa 100644 --- a/include/netinet/in.h +++ b/include/netinet/in.h @@ -199,6 +199,7 @@ uint16_t ntohs(uint16_t); #define IP_RECVORIGDSTADDR IP_ORIGDSTADDR #define IP_MINTTL 21 #define IP_NODEFRAG 22 +#define IP_CHECKSUM 23 #define IP_MULTICAST_IF 32 #define IP_MULTICAST_TTL 33 #define IP_MULTICAST_LOOP 34 |