📄 http_access_save.cgi
字号:
#!/usr/local/bin/perl# http_access_save.cgi# Save or delete a proxy restrictionrequire './squid-lib.pl';&ReadParse();$conf = &get_config();$whatfailed = "Failed to save proxy restriction";@https = &find_config("http_access", $conf);if (defined($in{'index'})) { $http = $conf->[$in{'index'}]; }if ($in{'delete'}) { # delete this restriction splice(@https, &indexof($http, @https), 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"); } $newhttp = { 'name' => 'http_access', 'values' => \@vals }; if ($http) { splice(@https, &indexof($http, @https), 1, $newhttp); } else { push(@https, $newhttp); } }&save_directive($conf, "http_access", \@https);&flush_file_lines();&redirect("edit_acl.cgi");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -