diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-06-03 12:34:05 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-06-03 12:34:05 +0000 |
commit | 1fb7088aa35b34099638abe7575434151652e4e5 (patch) | |
tree | face51457c959ec59aaf313cb664021081dc50f0 /sys/net/pfvar.h | |
parent | 809196520a7a7fddd15b5dae4321b9f24db50995 (diff) |
move some prototypes to pfvar.h. needed soon.
pf_tagname2tag, pf_tag2tagname, pf_tag_unref, pf_tag_packet
Diffstat (limited to 'sys/net/pfvar.h')
-rw-r--r-- | sys/net/pfvar.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index 7ad7c2b1847..dcd63338423 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.152 2003/05/17 02:01:21 henning Exp $ */ +/* $OpenBSD: pfvar.h,v 1.153 2003/06/03 12:34:04 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1103,6 +1103,11 @@ int pfr_ina_commit(int, int *, int *, int); int pfr_ina_define(struct pfr_table *, struct pfr_addr *, int, int *, int *, int, int); +u_int16_t pf_tagname2tag(char *); +void pf_tag2tagname(u_int16_t, char *); +void pf_tag_unref(u_int16_t); +int pf_tag_packet(struct mbuf *, struct pf_tag *, int); + extern struct pf_status pf_status; extern struct pool pf_frent_pl, pf_frag_pl; |