X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=vnet%2Fvnet%2Finterface.h;h=5fbf830c01cd0eccfde4437d38b3ea9267d6ba7b;hb=c631f2de6dd06b4cbb92bf8398839b882344fd25;hp=9f032e987bbac6f42a867d2d646fbd4a872e1d01;hpb=83486fb3ef0f25f9787f9aa898eafc6562f1540e;p=vpp.git diff --git a/vnet/vnet/interface.h b/vnet/vnet/interface.h index 9f032e987bb..5fbf830c01c 100644 --- a/vnet/vnet/interface.h +++ b/vnet/vnet/interface.h @@ -55,6 +55,10 @@ typedef clib_error_t *(vnet_subif_add_del_function_t) (struct vnet_main_t * vnm, u32 if_index, struct vnet_sw_interface_t * template, int is_add); +/* Interface set mac address callback. */ +typedef clib_error_t *(vnet_interface_set_mac_address_function_t) + (struct vnet_hw_interface_t * hi, char *address); + typedef struct _vnet_interface_function_list_elt { struct _vnet_interface_function_list_elt *next_interface_function; @@ -151,6 +155,9 @@ typedef struct _vnet_device_class /* Do not splice vnet_interface_output_node into TX path */ u8 no_flatten_output_chains; + /* Function to set mac address. */ + vnet_interface_set_mac_address_function_t *mac_addr_change_function; + } vnet_device_class_t; #define VNET_DEVICE_CLASS(x,...) \