diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-04-11 15:18:34 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-04-11 15:18:34 +0000 |
commit | 916da26e442ba1e9ef4e852667efd1b98cb814cf (patch) | |
tree | 425773064ce924cfa666d1474060ed7b35758f63 /sbin/pfctl/pfctl_altq.c | |
parent | 8fbec6d200356c3169e6e3da257476e0878e0643 (diff) |
qname_to_qid and qname_to_pfaltq can be private functions now; nothing
outside pfctl_altq.c uses them any more, nor should.
Diffstat (limited to 'sbin/pfctl/pfctl_altq.c')
-rw-r--r-- | sbin/pfctl/pfctl_altq.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c index 00270b34e9f..a935f34a18f 100644 --- a/sbin/pfctl/pfctl_altq.c +++ b/sbin/pfctl/pfctl_altq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_altq.c,v 1.51 2003/04/11 15:13:34 henning Exp $ */ +/* $OpenBSD: pfctl_altq.c,v 1.52 2003/04/11 15:18:33 henning Exp $ */ /* * Copyright (C) 2002 @@ -57,6 +57,9 @@ TAILQ_HEAD(altqs, pf_altq) altqs = TAILQ_HEAD_INITIALIZER(altqs); LIST_HEAD(gen_sc, segment) rtsc, lssc; +struct pf_altq *qname_to_pfaltq(const char *, const char *); +u_int32_t qname_to_qid(const char *); + static int eval_pfqueue_cbq(struct pfctl *, struct pf_altq *); static int cbq_compute_idletime(struct pfctl *, struct pf_altq *); static int check_commit_cbq(int, int, struct pf_altq *); |