diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2018-09-05 15:42:26 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-09-11 16:00:29 +0000 |
commit | c0a93143412b4be7bba087bf633855aeeaee7c56 (patch) | |
tree | d3031d3a0af0963f75b54c169299425cd5d63319 /test/vpp_ip_route.py | |
parent | 0d8cbc1b1503b633fd024e498e7664b489841075 (diff) |
GBP Endpoint Updates
- common types on the API
- endpoints keyed in various ways for DP lookup
- conparison functions for VPP IP address types
Change-Id: If7ec0bbc5cea71fd0983fe78987d147ec1bd7ec8
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'test/vpp_ip_route.py')
-rw-r--r-- | test/vpp_ip_route.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/test/vpp_ip_route.py b/test/vpp_ip_route.py index 216f5c7b2c1..9d6bfb77d93 100644 --- a/test/vpp_ip_route.py +++ b/test/vpp_ip_route.py @@ -6,6 +6,7 @@ from vpp_object import * from socket import inet_pton, inet_ntop, AF_INET, AF_INET6 +from vpp_ip import * # from vnet/vnet/mpls/mpls_types.h MPLS_IETF_MAX_LABEL = 0xfffff @@ -29,15 +30,6 @@ class MRouteEntryFlags: MFIB_ENTRY_FLAG_INHERIT_ACCEPT = 8 -class DpoProto: - DPO_PROTO_IP4 = 0 - DPO_PROTO_IP6 = 1 - DPO_PROTO_MPLS = 2 - DPO_PROTO_ETHERNET = 3 - DPO_PROTO_BIER = 4 - DPO_PROTO_NSH = 5 - - class MplsLspMode: PIPE = 0 UNIFORM = 1 |