diff options
author | Bill Marquette <billm@pfsense.org> | 2005-07-24 03:45:05 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-07-24 03:45:05 +0000 |
commit | a03e3c1f6449f9a2748ec1212adde41b1652e119 (patch) | |
tree | bd99cbfcd111064dd7a4c1fa0eb9802209ae7cde /etc | |
parent | c68fc1e7aba950da804fe87d5bac1b83aae1a36b (diff) | |
download | pfsense-a03e3c1f6449f9a2748ec1212adde41b1652e119.zip pfsense-a03e3c1f6449f9a2748ec1212adde41b1652e119.tar.gz |
move IP TOS and TCP FLAGS to globals.inc now that filter_reconfigure
might be run outside of the gui
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/globals.inc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/etc/inc/globals.inc b/etc/inc/globals.inc index d0b9803..fab858e 100644 --- a/etc/inc/globals.inc +++ b/etc/inc/globals.inc @@ -59,4 +59,11 @@ $g = array( "wireless_regex" => "/^(wi|ath|an)/" ); -?>
\ No newline at end of file +/* IP TOS flags */ +$iptos = array("lowdelay", "throughput", "reliability", "congestion"); + +/* TCP flags */ +$tcpflags = array("syn", "ack", "fin", "rst", "psh", "urg"); + + +?> |