Skip to content

Commit

Permalink
Correct push_vxlan_tunnel to push_nvgre_tunnel for dash_encapsulation…
Browse files Browse the repository at this point in the history
…_t.NVGRE
  • Loading branch information
jimmyzhai committed Oct 25, 2024
1 parent ecec348 commit 4c3bdf9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ control do_action_encap_u0(
meta.u0_encap_data.vni);
}
else if (meta.u0_encap_data.dash_encapsulation == dash_encapsulation_t.NVGRE) {
push_vxlan_tunnel_u0(hdr,
push_nvgre_tunnel_u0(hdr,
meta.u0_encap_data.underlay_dmac,
meta.u0_encap_data.underlay_smac,
meta.u0_encap_data.underlay_dip,
Expand Down Expand Up @@ -89,7 +89,7 @@ control do_action_encap_u1(
meta.u0_encap_data.vni);
}
else if (meta.u0_encap_data.dash_encapsulation == dash_encapsulation_t.NVGRE) {
push_vxlan_tunnel_u1(hdr,
push_nvgre_tunnel_u1(hdr,
meta.u0_encap_data.underlay_dmac,
meta.u0_encap_data.underlay_smac,
meta.u0_encap_data.underlay_dip,
Expand Down

0 comments on commit 4c3bdf9

Please sign in to comment.