Home | History | Annotate | only in /src/usr.sbin/altq/libaltq
History log of /src/usr.sbin/altq/libaltq
RevisionDateAuthorComments
 1.14 03-Jun-2023  lukem bsd.own.mk: rename GCC_NO_* to CC_WNO_*

Rename compiler-warning-disable variables from
GCC_NO_warning
to
CC_WNO_warning
where warning is the full warning name as used by the compiler.

GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH

Using the convention CC_compilerflag, where compilerflag
is based on the full compiler flag name.
 1.13 13-Oct-2019  mrg introduce some common variables for use in GCC warning disables:

GCC_NO_FORMAT_TRUNCATION -Wno-format-truncation (GCC 7/8)
GCC_NO_STRINGOP_TRUNCATION -Wno-stringop-truncation (GCC 8)
GCC_NO_STRINGOP_OVERFLOW -Wno-stringop-overflow (GCC 8)
GCC_NO_CAST_FUNCTION_TYPE -Wno-cast-function-type (GCC 8)

use these to turn off warnings for most GCC-8 complaints. many
of these are false positives, most of the real bugs are already
commited, or are yet to come.


we plan to introduce versions of (some?) of these that use the
"-Wno-error=" form, which still displays the warnings but does
not make it an error, and all of the above will be re-considered
as either being "fix me" (warning still displayed) or "warning
is wrong."
 1.12 16-Aug-2011  christos branches: 1.12.42;
use memcpy to avoid type punning.
 1.11 22-Jun-2011  mrg apply some -Wno-error and/or -fno-strict-aliasing.


all of this should be looked at closer, but some of them are not
very trivial.
 1.10 15-Apr-2009  lukem Fix -Wsign-compare issues
 1.9 03-May-2008  lukem branches: 1.9.8;
Rename MKPRIVATELIB to LIBISPRIVATE, to make it clearer that this is
a variable that is used by in-tree Makefiles to control behaviour.
(MKsomevar variables are generally intended to be controlled by the end-user)
 1.8 12-Oct-2006  peter branches: 1.8.16;
Merge the peter-altq branch.

(sync with KAME & add support for using ALTQ with pf(4)).
 1.7 10-Jan-2005  lukem branches: 1.7.6;
Only compile in IPv6 support if ${USE_INET6} != "no"

MKINET6 is for providing IPv6 infrastructure.
USE_INET6 is for compiling IPv6 support into the programs (needs MKINET6).
 1.6 23-May-2004  lukem Use MKPRIVATELIB=yes instead of providing an empty libinstall:: target and
setting NOLINT, NOPIC, NOPROFILE (etc)
 1.5 18-Sep-2002  lukem minor makefile delint
 1.4 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.3 12-Dec-2001  tv MKfoo=no -> NOfoo
 1.2 16-Dec-2000  thorpej Build glue for ALTQ programs.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.7.6.1 18-Mar-2006  peter Add qop_jobs.c.
 1.8.16.1 18-May-2008  yamt sync with head.
 1.9.8.1 13-May-2009  jym Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
 1.12.42.1 13-Apr-2020  martin Mostly merge changes from HEAD upto 20200411
 1.10 24-Dec-2024  kre Make return type in prototype for atobps() match that of the declaration.
Hopefully fix 32 bit builds.
 1.9 24-Dec-2024  ozaki-r altq, cbq: support 10 Gbps bandwidth

Mostly just s/u_int/uint64_t/ for bandwidth and rate variables.
 1.8 22-May-2022  andvar branches: 1.8.4;
fix various small typos, mainly in comments.
 1.7 11-Jul-2019  msaitoh Fix typo (s/supress/suppress/).
 1.6 16-Aug-2011  christos branches: 1.6.42;
use memcpy to avoid type punning.
 1.5 02-May-2008  xtraeme Constify and other misc fixes to make this build with WARNS=4.
 1.4 26-Nov-2006  peter branches: 1.4.16;
Since the -D option doesn't do anything useful at all, remove it.
 1.3 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.4.16.1 18-May-2008  yamt sync with head.
 1.6.42.1 13-Apr-2020  martin Mostly merge changes from HEAD upto 20200411
 1.8.4.1 02-Aug-2025  perseant Sync with HEAD
 1.2 16-Dec-2000  thorpej Build glue for ALTQ programs.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.2 16-Dec-2000  thorpej Build glue for ALTQ programs.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.13 15-Jan-2024  andvar Fix few typos in comments, mainly s/argment/argument/.
 1.12 14-Jul-2021  ozaki-r libaltq: allow longer config lines
 1.11 16-Aug-2011  christos use memcpy to avoid type punning.
 1.10 29-Oct-2004  dsl Add (unsigned char) cast to ctype function
 1.9 01-Feb-2003  wiz Make '?' work in interactive mode. Fixes PR bin/19949 by Christian Biere.
 1.8 28-Jan-2003  wiz unknown, not unkown. Noted by mjl.
 1.7 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.6 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.5 16-Aug-2001  itojun $NetBSD$
 1.4 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.3 06-Aug-2001  itojun avoid inet_addr. use snprintf. recent changes from openbsd-current via kame
 1.2 16-Dec-2000  thorpej Build glue for ALTQ programs.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.13 24-Dec-2024  ozaki-r altq, cbq: support 10 Gbps bandwidth

Mostly just s/u_int/uint64_t/ for bandwidth and rate variables.
 1.12 12-Nov-2024  andvar s/beloging/belonging/ in comment.
 1.11 16-Aug-2011  christos branches: 1.11.54;
use memcpy to avoid type punning.
 1.10 04-Jan-2011  wiz Fix fd leak in error case. Found by cppcheck.
 1.9 02-May-2008  xtraeme Constify and other misc fixes to make this build with WARNS=4.
 1.8 26-Nov-2006  peter branches: 1.8.16;
Since the -D option doesn't do anything useful at all, remove it.
 1.7 29-Sep-2006  christos Coverity CID 2714: Fix reversed test (from Arnaud Lacombe)
 1.6 07-Jun-2005  he Initialize various local variables (clinfo, fltrinfo) to appease
-Wuninitialized. Found while compiling for sun2.

Reviewed by lukem.
 1.5 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.8.16.1 18-May-2008  yamt sync with head.
 1.11.54.1 02-Aug-2025  perseant Sync with HEAD
 1.5 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.13 24-Dec-2024  ozaki-r altq, cbq: support 10 Gbps bandwidth

Mostly just s/u_int/uint64_t/ for bandwidth and rate variables.
 1.12 21-Jul-2021  ozaki-r branches: 1.12.4;
libaltq, cbq: convert ns_per_byte to ps_per_byte

PR kern/56319
 1.11 14-Jul-2021  ozaki-r libaltq, cbq: add two options to interface

- no-control: don't create a control class automatically
- no-tbr: don't install TBR
 1.10 19-Oct-2013  christos fix unused variable warnings.
 1.9 06-Jan-2010  mbalmer branches: 1.9.6; 1.9.12;
Fix typo in comment.
 1.8 15-Apr-2009  lukem Fix -Wsign-compare issues
 1.7 02-May-2008  xtraeme branches: 1.7.8;
Constify and other misc fixes to make this build with WARNS=4.
 1.6 31-May-2002  itojun branches: 1.6.32;
fail if the default class is larger than the ctl class.
report by Paul Civati <paul@xciv.org>
 1.5 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.6.32.1 18-May-2008  yamt sync with head.
 1.7.8.1 13-May-2009  jym Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
 1.9.12.1 20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.9.6.1 22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.12.4.1 02-Aug-2025  perseant Sync with HEAD
 1.5 24-Dec-2024  ozaki-r altq, cbq: support 10 Gbps bandwidth

Mostly just s/u_int/uint64_t/ for bandwidth and rate variables.
 1.4 21-Jul-2021  ozaki-r branches: 1.4.4;
libaltq, cbq: convert ns_per_byte to ps_per_byte

PR kern/56319
 1.3 14-Jul-2021  ozaki-r libaltq, cbq: add two options to interface

- no-control: don't create a control class automatically
- no-tbr: don't install TBR
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.4.4.1 02-Aug-2025  perseant Sync with HEAD
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.4 16-Aug-2011  christos use memcpy to avoid type punning.
 1.3 12-Oct-2006  peter Merge the peter-altq branch.

(sync with KAME & add support for using ALTQ with pf(4)).
 1.2 16-Aug-2001  itojun branches: 1.2.14;
$NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.2.14.1 18-Mar-2006  peter Sync with KAME.
 1.7 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.6 31-Dec-2001  thorpej Need <string.h> for strcmp() prototype (noticed by gcc 3.1).
 1.5 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.4 16-Aug-2001  itojun $NetBSD$
 1.3 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.2 16-Jan-2001  cgd include string.h for prototypes.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.5 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.11 24-May-2022  andvar fix various typos in comment, documentation and log messages.
 1.10 19-Oct-2013  christos fix unused variable warnings.
 1.9 01-Mar-2010  joerg branches: 1.9.6; 1.9.12;
Use HUGE_VAL instead of INFINITY as positive infinity (or maximum value)
is good enough and the side effects of ISO C99 7.12 (4) are not desired.
 1.8 12-Oct-2006  peter branches: 1.8.24; 1.8.30;
Merge the peter-altq branch.

(sync with KAME & add support for using ALTQ with pf(4)).
 1.7 26-Oct-2003  lukem branches: 1.7.12;
Now that <math.h> #defines INFINITY as HUGE_VALF (the float version)
(per C99 7.12 #4), we can't define it as HUGE_VAL (the double version).
Instead, just use HUGE_VAL directly.
 1.6 08-Sep-2002  itojun use HUGE_VAL defined in <math.h> instead of 1e500 for positive infinity.
gcc -pedantic audit by deraadt@openbsd.org
 1.5 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.7.12.1 18-Mar-2006  peter Sync with KAME.
 1.8.30.1 21-Apr-2010  matt sync to netbsd-5
 1.8.24.1 06-Mar-2010  sborrill Pull up the following revisions(s) (requested by joerg in ticket #1328):
usr.sbin/altq/libaltq/qop_hfsc.c: revision 1.9
dist/pf/sbin/pfctl/pfctl_altq.c: revision 1.9
gnu/dist/binutils/libiberty/floatformat.c: patch
gnu/dist/gcc4/libiberty/floatformat.c: revision 1.2
gnu/dist/gdb6/libiberty/floatformat.c: revision 1.2

Fix standard-violating use of INFINITY in build of NetBSD/vax.
Use HUGE_VAL instead of INFINITY as positive infinity (or maximum value)
is good enough and the side effects of ISO C99 7.12 (4) are not desired.
 1.9.12.1 20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.9.6.1 22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.3 12-Oct-2006  peter Merge the peter-altq branch.

(sync with KAME & add support for using ALTQ with pf(4)).
 1.2 16-Aug-2001  itojun branches: 1.2.14;
$NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.2.14.1 18-Mar-2006  peter Sync with KAME.
 1.3 19-Oct-2013  christos fix unused variable warnings.
 1.2 12-Oct-2006  peter branches: 1.2.40; 1.2.46;
Merge the peter-altq branch.

(sync with KAME & add support for using ALTQ with pf(4)).
 1.1 18-Mar-2006  peter branches: 1.1.2;
file qop_jobs.c was initially added on branch peter-altq.
 1.1.2.1 18-Mar-2006  peter Sync with KAME.
 1.2.46.1 20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.2.40.1 22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.2 12-Oct-2006  peter Merge the peter-altq branch.

(sync with KAME & add support for using ALTQ with pf(4)).
 1.1 18-Mar-2006  peter branches: 1.1.2;
file qop_jobs.h was initially added on branch peter-altq.
 1.1.2.1 18-Mar-2006  peter Sync with KAME.
 1.6 19-Oct-2013  christos fix unused variable warnings.
 1.5 05-Mar-2002  itojun branches: 1.5.58; 1.5.64;
bring in latest ALTQ from kjc.
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.5.64.1 20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.5.58.1 22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.5 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.5 05-Mar-2002  itojun bring in latest ALTQ from kjc.
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.6 11-Sep-2008  joerg Add support for source address hashhing in ALTQs WFQ. This allows to
easily distribute bandwidth for huge number of clients for incoming
traffic.
 1.5 05-Mar-2002  itojun branches: 1.5.20; 1.5.22; 1.5.36;
bring in latest ALTQ from kjc.
 1.4 22-Aug-2001  itojun sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.5.36.1 24-Sep-2008  wrstuden Merge in changes between wrstuden-revivesa-base-2 and
wrstuden-revivesa-base-3.
 1.5.22.1 15-Sep-2008  skrll Sync with netbsd-4.
 1.5.20.1 14-Sep-2008  bouyer Pull up following revision(s) (requested by joerg in ticket #1197):
sys/altq/altq_wfq.c: revision 1.19
sys/altq/altq_wfq.h: revision 1.6
usr.sbin/altq/altqd/altq.conf.5: revision 1.12
usr.sbin/altq/libaltq/qop_wfq.c: revision 1.6
Add support for source address hashhing in ALTQs WFQ. This allows to
easily distribute bandwidth for huge number of clients for incoming
traffic.
 1.2 16-Aug-2001  itojun $NetBSD$
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.7 04-Oct-2024  rillig altq: fix lint warnings about "effectively discards 'const'"

No binary change.
 1.6 19-Oct-2013  christos branches: 1.6.38;
fix unused variable warnings.
 1.5 15-Apr-2009  lukem branches: 1.5.6; 1.5.12;
Fix -Wsign-compare issues
 1.4 22-Aug-2001  itojun branches: 1.4.44;
sync with latest kame tree. snprintf() return value audit, log() cleanup,
and such.
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.
 1.4.44.1 13-May-2009  jym Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
 1.5.12.1 20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.5.6.1 22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.6.38.1 02-Aug-2025  perseant Sync with HEAD
 1.3 16-Aug-2001  itojun $NetBSD$
 1.2 16-Aug-2001  itojun string length audit (use strlcpy). sync with latest kame ALTQ.
 1.1 16-Dec-2000  thorpej branches: 1.1.1;
Initial revision
 1.1.1.1 16-Dec-2000  thorpej Import the altq library.

RSS XML Feed