Skip to content

Commit

Permalink
Add new Linux 3.16 constants to netinet/udp.h.
Browse files Browse the repository at this point in the history
This patch adds the new constants UDP_NO_CHECK6_TX and
UDP_NO_CHECK6_RX from Linux 3.16 to sysdeps/gnu/netinet/udp.h.  (I
believe the existing constants there are already Linux-specific,
possibly with the intention that other OSes should adopt the same
values if possible if adopting the features in question.)

Tested on x86_64.

	* sysdeps/gnu/netinet/udp.h (UDP_NO_CHECK6_TX): New macro.
	(UDP_NO_CHECK6_RX): Likewise.
  • Loading branch information
Joseph Myers committed Sep 12, 2014
1 parent 920238e commit 0bd7246
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2014-09-12 Joseph Myers <joseph@codesourcery.com>

* sysdeps/gnu/netinet/udp.h (UDP_NO_CHECK6_TX): New macro.
(UDP_NO_CHECK6_RX): Likewise.

2014-09-12 Siddhesh Poyarekar <siddhesh@redhat.com>

* sysdeps/posix/sysconf.c (__sysconf): Spell
Expand Down
4 changes: 4 additions & 0 deletions sysdeps/gnu/netinet/udp.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ struct udphdr
#define UDP_CORK 1 /* Never send partially complete segments. */
#define UDP_ENCAP 100 /* Set the socket to accept
encapsulated packets. */
#define UDP_NO_CHECK6_TX 101 /* Disable sending checksum for UDP
over IPv6. */
#define UDP_NO_CHECK6_RX 102 /* Disable accepting checksum for UDP
over IPv6. */

/* UDP encapsulation types */
#define UDP_ENCAP_ESPINUDP_NON_IKE 1 /* draft-ietf-ipsec-nat-t-ike-00/01 */
Expand Down

0 comments on commit 0bd7246

Please sign in to comment.