diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-01-21 15:42:37 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-01-21 15:42:37 +0000 |
commit | 0fa01991e398bc3934a8283ee5758f4f07458cd4 (patch) | |
tree | d9c1a3cb5a6a1e77bda72cbf517a7b78414d4d94 /sys | |
parent | ff39e4b9b57cd27df5b71896ea8d982696b72cb4 (diff) |
sync router renumbering flag bit to conform to 2292bis-02 and RR RFC.
sync with latest kame rtadvd (again). mostly cosmetic.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/icmp6.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/netinet/icmp6.h b/sys/netinet/icmp6.h index 749cc8a7567..4a6ed184469 100644 --- a/sys/netinet/icmp6.h +++ b/sys/netinet/icmp6.h @@ -1,5 +1,5 @@ -/* $OpenBSD: icmp6.h,v 1.12 2000/12/11 08:04:55 itojun Exp $ */ -/* $KAME: icmp6.h,v 1.24 2000/10/18 19:24:24 itojun Exp $ */ +/* $OpenBSD: icmp6.h,v 1.13 2001/01/21 15:42:35 itojun Exp $ */ +/* $KAME: icmp6.h,v 1.31 2001/01/21 15:32:16 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -385,12 +385,12 @@ struct icmp6_router_renum { /* router renumbering header */ u_int16_t rr_maxdelay; u_int32_t rr_reserved; }; -#define ICMP6_RR_FLAGS_SEGNUM 0x80 -#define ICMP6_RR_FLAGS_TEST 0x40 -#define ICMP6_RR_FLAGS_REQRESULT 0x20 -#define ICMP6_RR_FLAGS_FORCEAPPLY 0x10 -#define ICMP6_RR_FLAGS_SPECSITE 0x08 -#define ICMP6_RR_FLAGS_PREVDONE 0x04 + +#define ICMP6_RR_FLAGS_TEST 0x80 +#define ICMP6_RR_FLAGS_REQRESULT 0x40 +#define ICMP6_RR_FLAGS_FORCEAPPLY 0x20 +#define ICMP6_RR_FLAGS_SPECSITE 0x10 +#define ICMP6_RR_FLAGS_PREVDONE 0x08 #define rr_type rr_hdr.icmp6_type #define rr_code rr_hdr.icmp6_code |