diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2016-07-19 09:23:52 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2016-07-19 09:23:52 +0000 |
commit | e1538c9acd445759c03a9b8ecc7a36755a82e2ca (patch) | |
tree | da44b2af6d0f128bf203e5c09281e002ef95c4c8 /sys/netinet6/ip6_input.c | |
parent | aae5d521a5cc523ad6e0c0b16b508c07b010f457 (diff) |
In ip6_input() use a shortcut to detect our own address if the pf
state key is linked to a socket inp.
OK mpi@ henning@
Diffstat (limited to 'sys/netinet6/ip6_input.c')
-rw-r--r-- | sys/netinet6/ip6_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index 7d4966e980c..d9dc7839147 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_input.c,v 1.165 2016/07/19 08:13:46 mpi Exp $ */ +/* $OpenBSD: ip6_input.c,v 1.166 2016/07/19 09:23:51 bluhm Exp $ */ /* $KAME: ip6_input.c,v 1.188 2001/03/29 05:34:31 itojun Exp $ */ /* @@ -375,7 +375,7 @@ ip6_input(struct mbuf *m) goto hbhcheck; } - if (m->m_pkthdr.pf.flags & PF_TAG_DIVERTED) { + if (pf_ouraddr(m) == 1) { ours = 1; goto hbhcheck; } |