diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-07-18 22:15:38 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-07-18 22:15:38 +0200 |
commit | 85c9aaf9e4410bcd367c3e5f6dab13ce9ba936f4 (patch) | |
tree | 07a17b407542038c793443f173dbabc777b59885 | |
parent | fcf3a1950dbdbcf7a600cf8ae0e4ea92c20f5af1 (diff) |
netinet/in.h: add IPPROTO_MH
Fix compile of latest iproute2 package.
Reported-By: Baruch Siach <baruch@tkos.co.il>
-rw-r--r-- | include/netinet/in.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/netinet/in.h b/include/netinet/in.h index 884d925c9..fecd9a5a4 100644 --- a/include/netinet/in.h +++ b/include/netinet/in.h @@ -84,6 +84,8 @@ enum #define IPPROTO_COMP IPPROTO_COMP IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */ #define IPPROTO_SCTP IPPROTO_SCTP + IPPROTO_MH = 135, /* IPv6 mobility header. */ +#define IPPROTO_MH IPPROTO_MH IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */ #define IPPROTO_UDPLITE IPPROTO_UDPLITE IPPROTO_RAW = 255, /* Raw IP packets. */ |