From 8006c6aa425126529b4017768a9201e4f03964ad Mon Sep 17 00:00:00 2001 From: Ole Troan Date: Mon, 17 Dec 2018 12:02:26 +0100 Subject: PAPI: Add MACAddress object wrapper for vl_api_mac_address_t Change the definition of vl_api_mac_address_t to an aliased type. Change-Id: I1434f316d0fad6a099592f39bceeb8faeaf1d134 Signed-off-by: Ole Troan --- test/vpp_pppoe_interface.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/vpp_pppoe_interface.py') diff --git a/test/vpp_pppoe_interface.py b/test/vpp_pppoe_interface.py index 28d8a714972..9be92327dcf 100644 --- a/test/vpp_pppoe_interface.py +++ b/test/vpp_pppoe_interface.py @@ -1,7 +1,7 @@ from vpp_interface import VppInterface import socket -from vpp_mac import mactobinary +from vpp_papi import mac_pton class VppPppoeInterface(VppInterface): @@ -20,7 +20,7 @@ class VppPppoeInterface(VppInterface): def add_vpp_config(self): cip = socket.inet_pton(socket.AF_INET, self.client_ip) - cmac = mactobinary(self.client_mac) + cmac = mac_pton(self.client_mac) r = self.test.vapi.pppoe_add_del_session( cip, cmac, session_id=self.session_id, @@ -30,7 +30,7 @@ class VppPppoeInterface(VppInterface): def remove_vpp_config(self): cip = socket.inet_pton(socket.AF_INET, self.client_ip) - cmac = mactobinary(self.client_mac) + cmac = mac_pton(self.client_mac) self.unconfig() self.test.vapi.pppoe_add_del_session( cip, cmac, -- cgit 1.2.3-korg