diff options
author | Ole Troan <ot@cisco.com> | 2018-11-22 12:53:00 +0100 |
---|---|---|
committer | Ole Troan <ot@cisco.com> | 2018-11-22 21:28:33 +0100 |
commit | ffba3c377c679a69fd9507bc8f8bc3acf8258d1e (patch) | |
tree | afb66dc7250eb2597c5bb0075ca303a7cd12c32f /test/vpp_papi_provider.py | |
parent | fccd1b2b694146506e0efdeee6c23674550fc5d5 (diff) |
MAP: Use explicit address/prefix types in API
Change-Id: Ic751fecc4a060eedcdb9eaf5d02e1416c838fd63
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'test/vpp_papi_provider.py')
-rw-r--r-- | test/vpp_papi_provider.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index f8d0e6ca0f9..f1e53177af2 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -2698,11 +2698,8 @@ class VppPapiProvider(object): def map_add_domain(self, ip6_prefix, - ip6_prefix_len, ip6_src, - ip6_src_prefix_len, ip4_prefix, - ip4_prefix_len, ea_bits_len=0, psid_offset=0, psid_length=0, @@ -2713,11 +2710,8 @@ class VppPapiProvider(object): self.papi.map_add_domain, { 'ip6_prefix': ip6_prefix, - 'ip6_prefix_len': ip6_prefix_len, 'ip4_prefix': ip4_prefix, - 'ip4_prefix_len': ip4_prefix_len, 'ip6_src': ip6_src, - 'ip6_src_prefix_len': ip6_src_prefix_len, 'ea_bits_len': ea_bits_len, 'psid_offset': psid_offset, 'psid_length': psid_length, |