summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-03-08Handle multiple options for list, start and deleteStephen Hemminger
Make command more friendly if ever used manually. Handle multiple values for list_policy, start_interface and delete_policy
2009-03-08Move apply from top level into policy nodesStephen Hemminger
Makes code simpler and will work better with config system. Also eliminates need for isChanged() code.
2009-03-08Change vyatta-qos.pl to handle any interface typeStephen Hemminger
Remove code that knows about serial/adsl, etc and replace with new Vyatta::Interface. Simpler and fixes potential issues with bonding, vif, etc.
2009-03-08Fold name conflict checking into policy creationStephen Hemminger
Eliminate need for begin, just check for name conflicts at create.
2009-03-070.12.7debian/0.12.7Stephen Hemminger
2009-03-07Fix problems caused by GetOptions() change.Stephen Hemminger
When using closure form of GetOptions, any call to exit only causes GetOptions error rather than exit of program. Since QoS uses die to indicate transaction error, this doesn't work well!
2009-03-07Change optionsStephen Hemminger
Script calls --apply, and typo for --start-interface.
2009-03-07Avoid possible confusion over variable name 'usage'Stephen Hemminger
Having variable and function with same name is confusing.
2009-03-07Cleanup whitespaceStephen Hemminger
Git hates trailing whitespace.
2009-03-07Reindent Util.pm and enable strict check.Stephen Hemminger
2009-03-07Reindent traffic shaper with perl tidyStephen Hemminger
2009-02-100.12.6debian/0.12.6Stephen Hemminger
2009-02-10Merge branch 'jenner' of 192.168.100.1:git/vyatta-cfg-qos into jennerStephen Hemminger
2009-02-10Fix double prefix when setting up ShaperClassStephen Hemminger
Don't need to use Vyatta::Qos twice. Global search/replace strikes again
2009-02-080.12.5debian/0.12.5Stephen Hemminger
2009-02-08Merge branch 'jenner' of 192.168.100.1:git/vyatta-cfg-qos into jennerStephen Hemminger
2009-02-08Use undef rather than -1 in default classStephen Hemminger
If the class id -1 was mistakenly used it would match ingress values. So use undef instead.
2009-02-08Fix loading problems with sub-class modulesStephen Hemminger
Need full path on new ShaperClass. Enable warnings.
2009-02-060.12.4debian/0.12.4Stephen Hemminger
2009-02-06Add ShaperClass and LimiterClass to MakefileStephen Hemminger
2009-02-050.12.3debian/0.12.3Stephen Hemminger
2009-02-05Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg-qos into jennerStephen Hemminger
2009-02-05Split shaperclass into separate fileStephen Hemminger
2009-02-05traffic limiter: move class to separate fileStephen Hemminger
Move LimiterClass to its own file, and fix perlcritic warnings
2009-02-05ratelimiter: fix perlcritic warningsStephen Hemminger
2009-02-05Fairqueue: fix perlcritic warningsStephen Hemminger
2009-02-05Fix vyatta config name changeStephen Hemminger
VyattaConfig is now Vyatta::Config
2009-02-02Bugfix 4052: Support PPPOE over ethernet VIFs.Bob Gilligan
2009-02-02Move qos policy parameters for PPPOE to correct location in tree.Bob Gilligan
2009-01-300.12.2debian/0.12.2Stephen Hemminger
2009-01-30Fix QoS over ppp interfacesStephen Hemminger
Bug 3473 Add ppp startup script to apply QoS on start of related interfaces.
2009-01-30Fix error handling when no bandwidth specifiedStephen Hemminger
Bugfix 4075 Correctly report error message.
2009-01-25Enable strictStephen Hemminger
Forgot to enable strict.
2009-01-25Fix perl critic warningStephen Hemminger
Make loop variables local
2009-01-22Don't reset txqueuelen after removing qosStephen Hemminger
Bugfix 3859
2009-01-080.12.1debian/0.12.1An-Cheng Huang
2008-12-12"files" file should be removed before package buildAn-Cheng Huang
2008-12-12update maintainer informationAn-Cheng Huang
2008-12-09Add support for network emulationStephen Hemminger
New QoS feature to allow emulating WAN characteristics
2008-12-08Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg-qos into jennerStephen Hemminger
2008-12-08Ignore description in match specificationStephen Hemminger
Bugfix 3976 Need to ignore description when checking
2008-12-08Fix typo in import listStephen Hemminger
Incorrect capitalization
2008-12-03Merge branch 'islavista' into jennerRick Balocca
2008-11-253.2.0vyatta/3.2.0debian/0.12Mark O'Brien
2008-11-24VyattaConfig -> Vyatta::ConfigStephen Hemminger
2008-11-24Change VyattaConfig to Vyatta::ConfigStephen Hemminger
2008-11-21Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-cfg-qos into jennerStephen Hemminger
Conflicts: lib/Vyatta/Qos/TrafficLimiter.pm
2008-11-20Change perl module names from VyattaQosXXX to Vyatta::Qos:XXXStephen Hemminger
Use more multi-level directory hierarchy instead of having all modules at top level.
2008-11-19add support for development buildAn-Cheng Huang
2008-11-10Change input rate limiting to use token bucketStephen Hemminger
There are two ways to input rate limit. One uses the generic rate estimator which is supposed to measure average rate, the other is to use a token bucket based packet counter. Well the generic rate estimator doesn't work correctly in current kernels (no effect), so switch to using rate and burst. Bugfix 3881