[libvirt] [PATCH 06/26] Add helper methods for determining what protocol layer is used

Stefan Berger stefanb at linux.vnet.ibm.com
Tue Apr 15 14:06:22 UTC 2014


On 04/08/2014 11:37 AM, Daniel P. Berrange wrote:
> +bool virNWFilterRuleIsProtocolEthernet(virNWFilterRuleDefPtr rule)
> +{
> +    if (rule->prtclType >= VIR_NWFILTER_RULE_PROTOCOL_NONE &&
> +        rule->prtclType <= VIR_NWFILTER_RULE_PROTOCOL_IPV6)
> +        return true;
> +    return false;
> +}

I get a compilation error here. For me this code here works:

     if (/* rule->prtclType >= VIR_NWFILTER_RULE_PROTOCOL_NONE && */
         rule->prtclType <= VIR_NWFILTER_RULE_PROTOCOL_IPV6)
         return true;


Stefan




More information about the libvir-list mailing list