diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2019-10-25 01:44:03 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2019-10-25 01:44:03 +0000 |
commit | e0673b5e4008c21246a99704ae571f64c1d8cfec (patch) | |
tree | be99448fac280b2637ae35e9a3828301a3d5b6f1 /sys | |
parent | cf9ee5b111370eab06b628fd3b3de1f4269c890c (diff) |
+#define IPPROTO_UDPLITE 136, as per RFC 3828 and the IANA allocation
please don't interpret this as an intention on my part to implement
UDP-Lite.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/in.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/in.h b/sys/netinet/in.h index 48111a1c5bc..483eec99312 100644 --- a/sys/netinet/in.h +++ b/sys/netinet/in.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in.h,v 1.134 2019/10/23 19:58:32 bluhm Exp $ */ +/* $OpenBSD: in.h,v 1.135 2019/10/25 01:44:02 dlg Exp $ */ /* $NetBSD: in.h,v 1.20 1996/02/13 23:41:47 christos Exp $ */ /* @@ -97,6 +97,7 @@ typedef __in_port_t in_port_t; /* IP port type */ #define IPPROTO_PIM 103 /* Protocol indep. multicast */ #define IPPROTO_IPCOMP 108 /* IP Payload Comp. Protocol */ #define IPPROTO_CARP 112 /* CARP */ +#define IPPROTO_UDPLITE 136 /* UDP-Lite, RFC 3828 */ #define IPPROTO_MPLS 137 /* unicast MPLS packet */ #define IPPROTO_PFSYNC 240 /* PFSYNC */ #define IPPROTO_RAW 255 /* raw IP packet */ |