BD ARP entry use common API types
[vpp.git] / src / vnet / l2 / l2_vtr.h
index 893b227..f6454bf 100644 (file)
@@ -105,9 +105,11 @@ l2_vtr_process (vlib_buffer_t * b0, vtr_config_t * config)
   *((u64 *) eth) = temp_8;
   *((u32 *) (eth + 8)) = temp_4;
 
-  /* Update l2_len */
+  /* Update l2 parameters */
   vnet_buffer (b0)->l2.l2_len +=
     (word) config->push_bytes - (word) config->pop_bytes;
+  vnet_buffer (b0)->l2_hdr_offset -=
+    (word) config->push_bytes - (word) config->pop_bytes;
 
   /* Update vlan tag count */
   ethernet_buffer_adjust_vlan_count_by_bytes (b0,
@@ -258,6 +260,17 @@ u32 l2vtr_get (vlib_main_t * vlib_main,
               u32 * vtr_op,
               u32 * push_dot1q, u32 * vtr_tag1, u32 * vtr_tag2);
 
+/**
+ * Get pbb tag rewrite on the given interface.
+ * Return 1 if there is an error, 0 if ok
+ */
+u32 l2pbb_get (vlib_main_t * vlib_main,
+              vnet_main_t * vnet_main,
+              u32 sw_if_index,
+              u32 * vtr_op,
+              u16 * outer_tag,
+              ethernet_header_t * eth_hdr, u16 * b_vlanid, u32 * i_sid);
+
 #endif /* included_vnet_l2_vtr_h */