diff options
author | 2002-11-30 13:53:14 +0000 | |
---|---|---|
committer | 2002-11-30 13:53:14 +0000 | |
commit | c3bde663ec8a8d3509822b45dbce1964870073fe (patch) | |
tree | 24168ffc88fba085a59e9033c386975e3bd07545 | |
parent | move unmask back into pf_print_state.c where it was, and please keep it there; henning@ ok (diff) | |
download | wireguard-openbsd-c3bde663ec8a8d3509822b45dbce1964870073fe.tar.xz wireguard-openbsd-c3bde663ec8a8d3509822b45dbce1964870073fe.zip |
move damn unmask() proto into place as well
-rw-r--r-- | sbin/pfctl/parse.y | 3 | ||||
-rw-r--r-- | sbin/pfctl/pf_print_state.h | 3 | ||||
-rw-r--r-- | sbin/pfctl/pfctl_parser.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index af86299f944..eab465e4090 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.228 2002/11/29 17:14:18 henning Exp $ */ +/* $OpenBSD: parse.y,v 1.229 2002/11/30 13:53:14 mickey Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -50,6 +50,7 @@ #include <grp.h> #include <md5.h> +#include "pf_print_state.h" #include "pfctl_parser.h" #include "pfctl_altq.h" diff --git a/sbin/pfctl/pf_print_state.h b/sbin/pfctl/pf_print_state.h index f125c154f2a..dce2ac130bf 100644 --- a/sbin/pfctl/pf_print_state.h +++ b/sbin/pfctl/pf_print_state.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_print_state.h,v 1.7 2002/11/23 05:22:24 mcbride Exp $ */ +/* $OpenBSD: pf_print_state.h,v 1.8 2002/11/30 13:53:15 mickey Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -37,5 +37,6 @@ void print_addr(struct pf_addr_wrap *, sa_family_t); void print_host(struct pf_state_host *, sa_family_t, int); void print_seq(struct pf_state_peer *); void print_state(struct pf_state *s, int); +int unmask(struct pf_addr *, sa_family_t); #endif /* _PF_PRINT_STATE_H_ */ diff --git a/sbin/pfctl/pfctl_parser.h b/sbin/pfctl/pfctl_parser.h index 4782c55f751..1ccd6f477ab 100644 --- a/sbin/pfctl/pfctl_parser.h +++ b/sbin/pfctl/pfctl_parser.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_parser.h,v 1.30 2002/11/28 12:14:25 mcbride Exp $ */ +/* $OpenBSD: pfctl_parser.h,v 1.31 2002/11/30 13:53:15 mickey Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -87,8 +87,6 @@ void print_binat(struct pf_binat *); void print_rdr(struct pf_rdr *); void print_status(struct pf_status *); -int unmask(struct pf_addr *, sa_family_t); - struct icmptypeent { char *name; u_int8_t type; |