do 'bandwidth-lib.pl'; # acl_security_form(&options) # Output HTML for editing security options for the acl module sub acl_security_form { print " $text{'acl_setup'} \n"; printf " $text{'yes'}\n", $o->{'setup'} ? 'checked' : ''; printf " $text{'no'} \n", $o->{'setup'} ? '' : 'checked'; } # acl_security_save(&options) # Parse the form for security options for the acl module sub acl_security_save { $_[0]->{'setup'} = $in{'setup'}; }