diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-07-05 04:03:36 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-07-05 04:03:36 +0000 |
commit | d27343c210b22d055dfdf57846e29e0b52db9416 (patch) | |
tree | 1d93635ebdd940978f8e2374be1bd008d7ebcbee /usr | |
parent | c93e3ca8e49e697febf9e2f3f88d8bcaa971802e (diff) | |
download | pfsense-d27343c210b22d055dfdf57846e29e0b52db9416.zip pfsense-d27343c210b22d055dfdf57846e29e0b52db9416.tar.gz |
Add unreal tournament
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/wizards/traffic_shaper_wizard.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard.xml b/usr/local/www/wizards/traffic_shaper_wizard.xml index c9165f5..74f746f 100644 --- a/usr/local/www/wizards/traffic_shaper_wizard.xml +++ b/usr/local/www/wizards/traffic_shaper_wizard.xml @@ -765,7 +765,7 @@ <type>checkbox</type> <typehint>Prioritize network gaming traffic</typehint> <description>This will raise the priority of gaming traffic to higher than most traffic.</description> - <enablefields>Counterstrike,DeltaForce,QuakeIII,TigerWoods2004PS2,CallOfDuty,PlanetSide,Halo2</enablefields> + <enablefields>Counterstrike,DeltaForce,QuakeIII,TigerWoods2004PS2,CallOfDuty,PlanetSide,Halo2,Unreal</enablefields> <donotdisable>true</donotdisable> <bindstofield>ezshaper->step5->enable</bindstofield> </field> @@ -818,6 +818,12 @@ <type>checkbox</type> <typehint>Halo2 via Xbox live</typehint> <bindstofield>ezshaper->step5->halo2xbox</bindstofield> + </field> + <field> + <name>Unreal</name> + <type>checkbox</type> + <typehint>Unreal tournament</typehint> + <bindstofield>ezshaper->step5->unreal</bindstofield> </field> <field> <name>Next</name> @@ -926,6 +932,12 @@ $gamesplist[] = array('Halo2-3', 'tcp', '3074', '3074', 'both'); } + if($_POST['unreal'] != "") { + /* Unreal Tournament */ + $gamesplist[] = array('ur1', 'udp', '7777-7787', '7777-7787', 'both'); + $gamesplist[] = array('ur2', 'tcp', '7777-7787', '7777-7787', 'both'); + } + /* XXX: add some more games before this line!! */ /* Set up/down games as higher weight */ |