vlib: prevent some signals from being executed on workers
[vpp.git] / test / vrf.py
1 """ VRF Status codes """
2
3 from util import NumericConstant
4
5
6 class VRFState(NumericConstant):
7     """VRF State"""
8
9     not_configured = 0
10     configured = 1
11     reset = 2
12
13     desc_dict = {
14         not_configured: "VRF not configured",
15         configured: "VRF configured",
16         reset: "VRF reset",
17     }
18
19     def __init__(self, value):
20         NumericConstant.__init__(self, value)