diff options
author | Alexandr Nedvedicky <sashan@cvs.openbsd.org> | 2015-08-19 21:22:42 +0000 |
---|---|---|
committer | Alexandr Nedvedicky <sashan@cvs.openbsd.org> | 2015-08-19 21:22:42 +0000 |
commit | 279a72de529cdc45cbb17016e315f84a1e2f3c2e (patch) | |
tree | 610553761c65a8878c425510f842c551afd8729a /sys/net/pfvar.h | |
parent | 3fdae1cf48539a329e29d88f2b5e8d9d4d2083cd (diff) |
PF must keep IPv6 fragment size as chosen by sender also for packets,
which are routed on behalf route-to action.
OK bluhm@
Diffstat (limited to 'sys/net/pfvar.h')
-rw-r--r-- | sys/net/pfvar.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index 529791d8936..b540c73e74f 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.419 2015/07/20 01:18:33 mcbride Exp $ */ +/* $OpenBSD: pfvar.h,v 1.420 2015/08/19 21:22:41 sashan Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1734,7 +1734,8 @@ int pf_match_port(u_int8_t, u_int16_t, u_int16_t, u_int16_t); int pf_match_uid(u_int8_t, uid_t, uid_t, uid_t); int pf_match_gid(u_int8_t, gid_t, gid_t, gid_t); -int pf_refragment6(struct mbuf **, struct m_tag *mtag); +int pf_refragment6(struct mbuf **, struct m_tag *mtag, + struct sockaddr_in6 *, struct ifnet *); void pf_normalize_init(void); int pf_normalize_ip(struct pf_pdesc *, u_short *); int pf_normalize_ip6(struct pf_pdesc *, u_short *); |