<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
do 'bandwidth-lib.pl';

# acl_security_form(&amp;options)
# Output HTML for editing security options for the acl module
sub acl_security_form
{
print "&lt;tr&gt; &lt;td&gt;&lt;b&gt;$text{'acl_setup'}&lt;/b&gt;&lt;/td&gt; &lt;td&gt;\n";
printf "&lt;input type=radio name=setup value=1 %s&gt; $text{'yes'}\n",
	$o-&gt;{'setup'} ? 'checked' : '';
printf "&lt;input type=radio name=setup value=0 %s&gt; $text{'no'}&lt;/td&gt; &lt;/tr&gt;\n",
	$o-&gt;{'setup'} ? '' : 'checked';
}

# acl_security_save(&amp;options)
# Parse the form for security options for the acl module
sub acl_security_save
{
$_[0]-&gt;{'setup'} = $in{'setup'};
}

</pre></body></html>