mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Improve MUD prefs handling
Also implement a non-inline reloadPrefs Host method to avoid slowing down packet capture
This commit is contained in:
parent
3fcded57fa
commit
c3fa094e99
10 changed files with 129 additions and 9 deletions
|
|
@ -1984,6 +1984,7 @@ elseif (page == "config") then
|
|||
|
||||
if(_POST["mud_recording"] ~= nil) then
|
||||
mud_utils.setHostMUDRecordingPref(ifId, host_info.host, _POST["mud_recording"])
|
||||
interface.reloadHostPrefs(host_info.host)
|
||||
end
|
||||
|
||||
if(_POST["action"] == "delete_mud") then
|
||||
|
|
@ -1991,6 +1992,11 @@ elseif (page == "config") then
|
|||
end
|
||||
end
|
||||
|
||||
print[[<form id="delete-mud-form" method="post">]]
|
||||
print[[<input name="action" type="hidden" value="delete_mud" />]]
|
||||
print[[<input name="csrf" type="hidden" value="]] print(ntop.getRandomCSRFValue()) print[[" />]]
|
||||
print[[</form>]]
|
||||
|
||||
print[[
|
||||
<form id="host_config" class="form-inline" method="post">
|
||||
<input name="csrf" type="hidden" value="]] print(ntop.getRandomCSRFValue()) print[[" />
|
||||
|
|
@ -2033,12 +2039,7 @@ elseif (page == "config") then
|
|||
|
||||
if mud_utils.hasRecordedMUD(ifId, host_info.host) then
|
||||
print(" <a style=\"margin-left: 0.5em\" href=\""..ntop.getHttpPrefix().."/lua/rest/get/host/mud.lua?host=".. host_info.host .."\"><i class=\"fa fa-lg fa-download\"></i></a>")
|
||||
|
||||
print[[<form id="delete-mud-form" method="post">]]
|
||||
print[[<input name="action" type="hidden" value="delete_mud" />]]
|
||||
print[[<input name="csrf" type="hidden" value="]] print(ntop.getRandomCSRFValue()) print[[" />]]
|
||||
print("<a style=\"margin-left: 1em\" href=\"#\" onclick=\"$(this).closest('form').submit();\"><i class=\"fa fa-lg fa-trash\"></i></a>")
|
||||
print[[</form>]]
|
||||
print("<a style=\"margin-left: 1em\" href=\"#\" onclick=\"$('#delete-mud-form').submit();\"><i class=\"fa fa-lg fa-trash\"></i></a>")
|
||||
end
|
||||
|
||||
print[[</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue