diff options
author | Kenjiro Cho <kjc@cvs.openbsd.org> | 2003-01-07 09:00:35 +0000 |
---|---|---|
committer | Kenjiro Cho <kjc@cvs.openbsd.org> | 2003-01-07 09:00:35 +0000 |
commit | 90c5fb9bb11ea1c011e1f4ec515a88050712e329 (patch) | |
tree | 1714800df3407f7f18e59f48905f9303c52a5139 /sys/netinet | |
parent | c867b6d1d4578e50d73dddd2c3fb47bfae7e1475 (diff) |
remove the altq classifier code which is replaced by pf and no longer used.
ok henning@, deraadt@
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_input.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index de45cff04da..07f1abbc1b8 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_input.c,v 1.107 2002/09/04 19:04:38 dhartmei Exp $ */ +/* $OpenBSD: ip_input.c,v 1.108 2003/01/07 09:00:34 kjc Exp $ */ /* $NetBSD: ip_input.c,v 1.30 1996/03/16 23:53:58 christos Exp $ */ /* @@ -401,12 +401,6 @@ ipv4_input(m) hlen = ip->ip_hl << 2; #endif -#ifdef ALTQ - if (altq_input != NULL && (*altq_input)(m, AF_INET) == 0) - /* packet is dropped by traffic conditioner */ - return; -#endif - /* * Process options and, if not destined for us, * ship it on. ip_dooptions returns 1 when an |