diff options
author | Charlie <root@testfbsd8.localdomain> | 2009-07-08 14:45:06 +0000 |
---|---|---|
committer | Charlie <root@testfbsd8.localdomain> | 2009-07-08 14:45:29 +0000 |
commit | cc47995dd0b4f7a44c36a94d6f4feabddc418e12 (patch) | |
tree | d54a022f4a72f025e16d50b6ab708b47e7fbecfe /config/siproxd.inc | |
parent | dae4090094c2d03a8659d8a1c2e69763f06139bb (diff) | |
download | pfsense-packages-cc47995dd0b4f7a44c36a94d6f4feabddc418e12.tar.gz pfsense-packages-cc47995dd0b4f7a44c36a94d6f4feabddc418e12.tar.bz2 pfsense-packages-cc47995dd0b4f7a44c36a94d6f4feabddc418e12.zip |
Add needed code to packages to confirm to 2.0 rules for adding firewall rules. NOTE: other packages might need intervention but for now this is the neccessary minimum to remove dependency on pkg-utils.inc on filter.inc
Diffstat (limited to 'config/siproxd.inc')
-rw-r--r-- | config/siproxd.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/siproxd.inc b/config/siproxd.inc index be1ac196..147eee31 100644 --- a/config/siproxd.inc +++ b/config/siproxd.inc @@ -73,6 +73,7 @@ function siproxd_generate_rules($type) { } break; case 'filter': + case 'rule': foreach ($ifaces as $iface) { $rules .= "# allow SIP signaling and RTP traffic\n"; $rules .= "pass in quick on {$iface} proto udp from any to any port = {$port}\n"; @@ -193,4 +194,4 @@ function sync_package_siproxd() { conf_mount_ro(); } -?>
\ No newline at end of file +?> |