packetforge: add packetforge for generic flow to extras
[vpp.git] / extras / packetforge / InputFormat.py
1 import enum
2
3
4 class InputFormat(enum.Enum):
5     mac = 0
6     ipv4 = 1
7     ipv6 = 2
8     u8 = 3
9     u16 = 4
10     u32 = 5
11     u64 = 6
12     bytearray = 7