diff options
author | Yoshinobu Inoue <shin@FreeBSD.org> | 1999-12-22 19:13:38 +0000 |
---|---|---|
committer | Yoshinobu Inoue <shin@FreeBSD.org> | 1999-12-22 19:13:38 +0000 |
commit | 6a800098cc0778c9618a89f858021624722374bd (patch) | |
tree | 9cd3718d0c142edcd3154715cf1b5c93cd5c0d82 /sys/netinet6/icmp6.h | |
parent | 2e636eed154504de1062c0a338b1f3f78c7ac4a0 (diff) |
IPSEC support in the kernel.
pr_input() routines prototype is also changed to support IPSEC and IPV6
chained protocol headers.
Reviewed by: freebsd-arch, cvs-committers
Obtained from: KAME project
Notes
Notes:
svn path=/head/; revision=55009
Diffstat (limited to 'sys/netinet6/icmp6.h')
-rw-r--r-- | sys/netinet6/icmp6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/icmp6.h b/sys/netinet6/icmp6.h index 2fdb28bf5701..c67e961aaea3 100644 --- a/sys/netinet6/icmp6.h +++ b/sys/netinet6/icmp6.h @@ -386,8 +386,8 @@ struct rr_pco_use { /* use prefix part */ u_int32_t rpu_flags; struct in6_addr rpu_prefix; }; -#define ICMP6_RR_PCOUSE_RAFLAGS_ONLINK 0x20 -#define ICMP6_RR_PCOUSE_RAFLAGS_AUTO 0x10 +#define ICMP6_RR_PCOUSE_RAFLAGS_ONLINK 0x80 +#define ICMP6_RR_PCOUSE_RAFLAGS_AUTO 0x40 #if BYTE_ORDER == BIG_ENDIAN #define ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME 0x80000000 |