diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-09-08 19:43:34 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-09-08 19:43:34 -0400 |
commit | f59cedb549c642277673d28357e038801fecca64 (patch) | |
tree | a70a10bec3df8e63c6ba64fc1a3b9e54e03d47bf | |
parent | 695a04fc251c3b9feae5535e0c14e7b8f932b892 (diff) | |
download | musl-f59cedb549c642277673d28357e038801fecca64.tar.gz musl-f59cedb549c642277673d28357e038801fecca64.tar.xz musl-f59cedb549c642277673d28357e038801fecca64.zip |
add IPPROTO_MAX to in.h
-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 509640b8..62cbfa8d 100644 --- a/include/netinet/in.h +++ b/include/netinet/in.h @@ -95,6 +95,7 @@ uint16_t ntohs(uint16_t); #define IPPROTO_PIM 103 #define IPPROTO_COMP 108 #define IPPROTO_RAW 255 +#define IPPROTO_MAX 256 #define IN6_IS_ADDR_UNSPECIFIED(a) \ (((uint32_t *) (a))[0] == 0 && ((uint32_t *) (a))[1] == 0 && \ |