save_options.cgi
来自「linux环境下的一个防火墙程序的源代码」· CGI 代码 · 共 23 行
CGI
23 行
#!/usr/bin/perl#======================================================================# Turtle Firewall webmin module## Copyright (c) Andrea Frigido# You may distribute under the terms of either the GNU General Public# License#======================================================================do 'lib.pl';if( $in{save} ne '' ) { getOptionsList(); foreach my $option (@optionkeys) { $fw->AddOption($option, $in{$option} ); } $fw->SaveFirewall();}redirect( '' );
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?