icp_access_save.cgi
来自「Unix下基于Web的管理工具」· CGI 代码 · 共 31 行
CGI
31 行
#!/usr/local/bin/perl# icp_access_save.cgi# Save or delete a proxy restrictionrequire './squid-lib.pl';&ReadParse();$conf = &get_config();$whatfailed = "Failed to save ICP restriction";@icps = &find_config("icp_access", $conf);if (defined($in{'index'})) { $icp = $conf->[$in{'index'}]; }if ($in{'delete'}) { # delete this restriction splice(@icps, &indexof($icp, @icps), 1); }else { # update or create @vals = ( $in{'action'} ); foreach $y (split(/\0/, $in{'yes'})) { push(@vals, $y); } foreach $n (split(/\0/, $in{'no'})) { push(@vals, "!$n"); } $newicp = { 'name' => 'icp_access', 'values' => \@vals }; if ($icp) { splice(@icps, &indexof($icp, @icps), 1, $newicp); } else { push(@icps, $newicp); } }&save_directive($conf, "icp_access", \@icps);&flush_file_lines();&redirect("edit_acl.cgi");
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?