- or download this
use IO::Select;
use IO::Socket;
...
$req =~ m/.*?\s+(.*?)\s/;
my $page = $1;
if (!defined($trusted_site->{$host})) {
- or download this
my $dialog = $mw->DialogBox(-title => "Is $host trusted?", -bu
+ttons => ["Yes", "No"]);
$dialog->geometry("600x100+0+0");
...
} else {
$trusted_site->{$host} = 0;
}
- or download this
}
if (!$trusted_site->{$host} || is_banned_type($page)) {
...
}
}
}