# Clients options
{
    my $OUT = '';
    my $maxClient = ${'openvpn-bridge'}{maxClients} || '20';
    my $clientToClient = ${'openvpn-bridge'}{clientToClient} || 'disabled';
    my $compLzo = ${'openvpn-bridge'}{compLzo} || 'enabled';
    my $configRequired = ${'openvpn-bridge'}{ConfigRequired} || 'disabled';

    if ($clientToClient eq 'enabled'){
        $OUT .= "client-to-client\n";
    }
	
    $OUT .= "client-config-dir ccd\n";

    if ($configRequired eq 'enabled'){
        $OUT .= 'ccd-exclusive\n';
    }
	
    $OUT .= "max-clients $maxClient\n";
	
    if ( $compLzo eq 'enabled'){
        $OUT .= "comp-lzo adaptive\n";
        $OUT .= "push \"comp-lzo adaptive\"\n";
    }
    $OUT .= '';
}

