From: bluhm Date: Tue, 19 Jul 2016 09:23:51 +0000 (+0000) Subject: In ip6_input() use a shortcut to detect our own address if the pf X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=7d717e4f20a3151ece5b0b1bfb5907156fb528bb;p=openbsd 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@ --- 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; }