summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkn <kn@openbsd.org>2019-01-02 22:59:54 +0000
committerkn <kn@openbsd.org>2019-01-02 22:59:54 +0000
commit0912627aed19daada01192c08bb6e645d1957283 (patch)
tree6671661b5e22063185acb7934ea3f03581133ecb
parentDetect and remove routes in the kernel routing table with priority (diff)
downloadwireguard-openbsd-0912627aed19daada01192c08bb6e645d1957283.tar.xz
wireguard-openbsd-0912627aed19daada01192c08bb6e645d1957283.zip
Zap unused segment struct definition
There since import and last used by ALTQ which henning removed in 2004. OK sashan
-rw-r--r--sbin/pfctl/pfctl.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/sbin/pfctl/pfctl.h b/sbin/pfctl/pfctl.h
index c810eadb2a0..dc36c6cbfe6 100644
--- a/sbin/pfctl/pfctl.h
+++ b/sbin/pfctl/pfctl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl.h,v 1.57 2018/09/06 15:07:33 kn Exp $ */
+/* $OpenBSD: pfctl.h,v 1.58 2019/01/02 22:59:54 kn Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -83,14 +83,6 @@ void warn_namespace_collision(const char *);
void pfctl_show_ifaces(const char *, int);
FILE *pfctl_fopen(const char *, const char *);
-/*
- * generalized service curve used for admission control
- */
-struct segment {
- LIST_ENTRY(segment) _next;
- double x, y, d, m;
-};
-
void print_addr(struct pf_addr_wrap *, sa_family_t, int);
void print_addr_str(sa_family_t, struct pf_addr *);
void print_host(struct pf_addr *, u_int16_t p, sa_family_t, u_int16_t, const char *, int);