Date: Sat, 28 Mar 2009 19:08:27 +0400 From: Yuriy Grishin <grishin-mailing-lists@minselhoz.samara.ru> To: Jay Aikat <ja@unc.edu> Cc: freebsd-pf@freebsd.org Subject: Re: pftop queue stats Message-ID: <49CE3D6B.90503@minselhoz.samara.ru> In-Reply-To: <49CE399C.2080406@unc.edu> References: <49CE29DB.7010803@unc.edu> <49CE3822.409@minselhoz.samara.ru> <49CE399C.2080406@unc.edu>
index | next in thread | previous in thread | raw e-mail
Jay Aikat wrote:
> The large queue limit is just for testing purposes. Once I figure out
> this logging of the queue at better granularity, I plan to have more
> realistic queue limits.
>
> These are for experiments I am running in our lab to study network
> traffic characteristics and the effect of that on router queuing -
> just FYI.
>
> Thanks.
I see....
There is no simple way to use a value less than 1 with "-s" parameter
because :
**********pftop.c***********
case 's':
delay = atoi(optarg);
if (delay < 1)
delay = 1;
break;
**********pftop.c***********
and :
**********engine.c**********
int delay = 5;
**********engine.c**********
Although, you can rewrite the program.
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?49CE3D6B.90503>
