diff options
author | 2024-11-12 08:56:45 -0600 | |
---|---|---|
committer | 2024-11-12 17:14:50 +0000 | |
commit | c68c9708387c1d7a7ed6b59b7c2162950fcbc122 (patch) | |
tree | 9132871c0632235d79f57df8f0e4542d18fb0254 /test | |
parent | 27a901ece39c371eba0f11806d9fe54b0e8dc95c (diff) |
sr : enable SRv6 uSID in the SRv6 API
Type: improvement
Change-Id: I026b1a8fd1df0e6ac1dba8df78b12cde95aae419
Signed-off-by: Ahmed Abdelsalam <ahabdels@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/vpp_srv6.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/vpp_srv6.py b/test/vpp_srv6.py index 1b09103f297..5fa293f62ec 100644 --- a/test/vpp_srv6.py +++ b/test/vpp_srv6.py @@ -20,9 +20,10 @@ class SRv6LocalSIDBehaviors: SR_BEHAVIOR_DX4 = 7 SR_BEHAVIOR_DT6 = 8 SR_BEHAVIOR_DT4 = 9 - SR_BEHAVIOR_END_UN_PERF = 10 - SR_BEHAVIOR_END_UN = 11 - SR_BEHAVIOR_LAST = 12 # Must always be the last one + SR_BEHAVIOR_LAST = 10 # Not used anymore. Kept not to break the API. + SR_BEHAVIOR_END_UN_PERF = 11 + SR_BEHAVIOR_END_UN = 12 + SR_BEHAVIOR_END_UA = 13 class SRv6PolicyType: |