summaryrefslogtreecommitdiffstats
path: root/usr/local/www
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-06-23 23:04:46 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-06-23 23:04:46 +0000
commit3dc2d8933b8147b751d19ff22dec00b774e1b7e4 (patch)
tree315553d59f002daa88570c4c98778dba2c35234b /usr/local/www
parente57757c5e43b2317c727534fa3cf7f7a1057ddaa (diff)
downloadpfsense-3dc2d8933b8147b751d19ff22dec00b774e1b7e4.zip
pfsense-3dc2d8933b8147b751d19ff22dec00b774e1b7e4.tar.gz
Add RTSP protocol
Diffstat (limited to 'usr/local/www')
-rw-r--r--usr/local/www/wizards/traffic_shaper_wizard.xml31
1 files changed, 28 insertions, 3 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard.xml b/usr/local/www/wizards/traffic_shaper_wizard.xml
index bc8c231..03871a3 100644
--- a/usr/local/www/wizards/traffic_shaper_wizard.xml
+++ b/usr/local/www/wizards/traffic_shaper_wizard.xml
@@ -974,7 +974,7 @@
<type>checkbox</type>
<typehint>Other networking protocols</typehint>
<description>This will help raise or lower the priority of other protocols higher than most traffic.</description>
- <enablefields>MSRDP,PPTP,IPSEC,StreamingMP3,IRC,DNS,HTTP,SMTP,POP3,ICMP,IMAP,SMB</enablefields>
+ <enablefields>MSRDP,PPTP,IPSEC,StreamingMP3,IRC,DNS,HTTP,SMTP,POP3,ICMP,IMAP,SMB,RTSP</enablefields>
<donotdisable>true</donotdisable>
<bindstofield>ezshaper->step6->enable</bindstofield>
</field>
@@ -1225,7 +1225,27 @@
</option>
</options>
<typehint>Microsoft SMB Protocol and friends</typehint>
- </field>
+ </field>
+ <field>
+ <name>RTSP</name>
+ <bindstofield>ezshaper->step6->rtsp</bindstofield>
+ <type>select</type>
+ <options>
+ <option>
+ <name>Higher priority</name>
+ <value>H</value>
+ </option>
+ <option>
+ <name>Default priority</name>
+ <value></value>
+ </option>
+ <option>
+ <name>Lower priority</name>
+ <value>L</value>
+ </option>
+ </options>
+ <typehint>RealTime streaming protocol</typehint>
+ </field>
<field>
<name>Next</name>
<type>submit</type>
@@ -1398,7 +1418,12 @@
/* Microsoft SMB and friends */
$othersplist[] = array('SMB1', 'tcp', '445', '445', 'both', $_POST['smb']);
$othersplist[] = array('SMB2', 'tcp', '137-139', '137-139', 'both', $_POST['smb']);
- }
+
+
+ if($_POST['rtsp'] != "") {
+ /* realtime streaming protocol */
+ $othersplist[] = array('RTSP1', 'tcp', '554', '554', 'both', $_POST['rtsp']);
+ } }
/* XXX: add some more protocols here! */
OpenPOWER on IntegriCloud