Re: [ovs-dev] [PATCH v3 02/18] python: add mask, ip and eth decoders

2022-03-18 Thread Eelco Chaudron
On 11 Mar 2022, at 16:21, Adrian Moreno wrote: > Add more decoders that can be used by KVParser. > > For IPv4 and IPv6 addresses, create a new class that wraps > netaddr.IPAddress. > For Ethernet addresses, create a new class that wraps netaddr.EUI. > For Integers, create a new class that

[ovs-dev] [PATCH v3 02/18] python: add mask, ip and eth decoders

2022-03-11 Thread Adrian Moreno
Add more decoders that can be used by KVParser. For IPv4 and IPv6 addresses, create a new class that wraps netaddr.IPAddress. For Ethernet addresses, create a new class that wraps netaddr.EUI. For Integers, create a new class that performs basic bitwise mask comparisons Acked-by: Eelco Chaudron