Help for this page

Select Code to Download


  1. or download this
    my $get_hosts = GetHosts($_, \%data);
    my $get_new = GetNewFWRules($_, \%data);
    ...
        get_hosts => $get_hosts,
        get_new_fw_rules => $get_new,
    );
    
  2. or download this
            my %do_for = (
                get_hosts => [GetHosts($_, \%data)],
                get_new_fw_rules => [GetNewFWRules($_, \%data)],
            );