diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-01-01 20:19:20 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-01-01 20:19:20 -0500 |
commit | 5d893e50b063e67360dabb120b547ba52bfc5b87 (patch) | |
tree | 3c0e734ac2d50e289743dcb5b65b162af32fcd0a /include/netinet/in.h | |
parent | 5652d70054daf3c2c9b6d475fdf9d24a940e51aa (diff) | |
download | musl-5d893e50b063e67360dabb120b547ba52bfc5b87.tar.gz musl-5d893e50b063e67360dabb120b547ba52bfc5b87.tar.xz musl-5d893e50b063e67360dabb120b547ba52bfc5b87.zip |
add some new-ish IPPROTO constants that were missing
Diffstat (limited to 'include/netinet/in.h')
-rw-r--r-- | include/netinet/in.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/netinet/in.h b/include/netinet/in.h index f2f89aba..1086f074 100644 --- a/include/netinet/in.h +++ b/include/netinet/in.h @@ -81,6 +81,7 @@ uint16_t ntohs(uint16_t); #define IPPROTO_UDP 17 #define IPPROTO_IDP 22 #define IPPROTO_TP 29 +#define IPPROTO_DCCP 33 #define IPPROTO_IPV6 41 #define IPPROTO_ROUTING 43 #define IPPROTO_FRAGMENT 44 @@ -95,6 +96,8 @@ uint16_t ntohs(uint16_t); #define IPPROTO_ENCAP 98 #define IPPROTO_PIM 103 #define IPPROTO_COMP 108 +#define IPPROTO_SCTP 132 +#define IPPROTO_UDPLITE 136 #define IPPROTO_RAW 255 #define IPPROTO_MAX 256 |