Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
27ed7eb3
Commit
27ed7eb3
authored
Jun 18, 2015
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
queues: a few more renmants zapped
parent
22e0e257
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
29 deletions
+0
-29
guiconfig.inc
src/www/guiconfig.inc
+0
-4
firewall_rules_edit.js
...www/javascript/firewall_rules_edit/firewall_rules_edit.js
+0
-6
status_rrd_graph.php
src/www/status_rrd_graph.php
+0
-9
status_rrd_graph_settings.php
src/www/status_rrd_graph_settings.php
+0
-4
status_rrd_graph_tabs.inc
src/www/status_rrd_graph_tabs.inc
+0
-6
No files found.
src/www/guiconfig.inc
View file @
27ed7eb3
...
...
@@ -447,10 +447,6 @@ function firewall_check_for_advanced_options(&$item) {
$item_set
.=
"max-src-conn-rates
{
$item
[
'max-src-conn-rates'
]
}
"
;
if
(
$item
[
'gateway'
])
$item_set
.=
"gateway
{
$item
[
'gateway'
]
}
"
;
if
(
$item
[
'ackqueue'
])
$item_set
.=
"ackqueue
{
$item
[
'ackqueue'
]
}
"
;
if
(
$item
[
'defaultqueue'
])
$item_set
.=
"defaultqueue
{
$item
[
'defaultqueue'
]
}
"
;
if
(
$item
[
'tag'
])
$item_set
.=
"tag
{
$item
[
'tag'
]
}
"
;
if
(
$item
[
'tagged'
])
...
...
src/www/javascript/firewall_rules_edit/firewall_rules_edit.js
View file @
27ed7eb3
...
...
@@ -164,12 +164,6 @@ function show_advanced_sourceos() {
aodiv
.
style
.
display
=
"
block
"
;
}
function
show_advanced_ackqueue
()
{
document
.
getElementById
(
"
showadvackqueuebox
"
).
innerHTML
=
''
;
aodiv
=
document
.
getElementById
(
'
showackqueueadv
'
);
aodiv
.
style
.
display
=
"
block
"
;
}
function
show_advanced_inout
()
{
document
.
getElementById
(
"
showadvinoutbox
"
).
innerHTML
=
''
;
aodiv
=
document
.
getElementById
(
'
showinoutadv
'
);
...
...
src/www/status_rrd_graph.php
View file @
27ed7eb3
...
...
@@ -74,12 +74,6 @@ if ($_GET['option']) {
case
"system"
:
$curoption
=
"processor"
;
break
;
case
"queues"
:
$curoption
=
"queues"
;
break
;
case
"queuedrops"
:
$curoption
=
"queuedrops"
;
break
;
case
"quality"
:
foreach
(
$databases
as
$database
)
{
if
(
preg_match
(
"/[-]quality\.rrd/i"
,
$database
))
{
...
...
@@ -212,9 +206,6 @@ foreach($databases as $database) {
if
(
stristr
(
$database
,
"-wireless"
))
{
$wireless
=
true
;
}
if
(
stristr
(
$database
,
"-queues"
))
{
$queues
=
true
;
}
if
(
stristr
(
$database
,
"-cellular"
)
&&
!
empty
(
$config
[
'ppps'
]))
{
$cellular
=
true
;
}
...
...
src/www/status_rrd_graph_settings.php
View file @
27ed7eb3
...
...
@@ -40,7 +40,6 @@ $categories = array('system' => gettext("System"),
'traffic'
=>
gettext
(
"Traffic"
),
'packets'
=>
gettext
(
"Packets"
),
'quality'
=>
gettext
(
"Quality"
),
'queues'
=>
gettext
(
"Queues"
),
'captiveportal'
=>
gettext
(
"Captive Portal"
));
if
(
isset
(
$config
[
'ntpd'
][
'statsgraph'
]))
{
...
...
@@ -88,9 +87,6 @@ foreach($databases as $database) {
if
(
stristr
(
$database
,
"wireless"
))
{
$wireless
=
true
;
}
if
(
stristr
(
$database
,
"queues"
))
{
$queues
=
true
;
}
if
(
stristr
(
$database
,
"-cellular"
)
&&
!
empty
(
$config
[
'ppps'
]))
{
$cellular
=
true
;
}
...
...
src/www/status_rrd_graph_tabs.inc
View file @
27ed7eb3
...
...
@@ -8,12 +8,6 @@
$tab_array
[]
=
array
(
gettext
(
"Packets"
),
$tabactive
,
"status_rrd_graph.php?cat=packets"
);
if
(
$curcat
==
"quality"
)
{
$tabactive
=
True
;
}
else
{
$tabactive
=
False
;
}
$tab_array
[]
=
array
(
gettext
(
"Quality"
),
$tabactive
,
"status_rrd_graph.php?cat=quality"
);
if
(
$queues
)
{
if
(
$curcat
==
"queues"
)
{
$tabactive
=
True
;
}
else
{
$tabactive
=
False
;
}
$tab_array
[]
=
array
(
gettext
(
"Queues"
),
$tabactive
,
"status_rrd_graph.php?cat=queues"
);
if
(
$curcat
==
"queuedrops"
)
{
$tabactive
=
True
;
}
else
{
$tabactive
=
False
;
}
$tab_array
[]
=
array
(
gettext
(
"QueueDrops"
),
$tabactive
,
"status_rrd_graph.php?cat=queuedrops"
);
}
if
(
$wireless
)
{
if
(
$curcat
==
"wireless"
)
{
$tabactive
=
True
;
}
else
{
$tabactive
=
False
;
}
$tab_array
[]
=
array
(
gettext
(
"Wireless"
),
$tabactive
,
"status_rrd_graph.php?cat=wireless"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment