mirror of
https://github.com/openvswitch/ovs
synced 2025-10-07 13:40:45 +00:00
tunneling: Remove gre64 tunnel support.
GRE64 was introduced to extend gre key from 32-bit to 64-bit using gre-key and sequence number field. But GRE64 is not standard protocol. There are not many users of this protocol. Therefore we have decided to remove it. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
This commit is contained in:
@@ -759,9 +759,6 @@ get_vport_type(const struct dpif_netlink_vport *vport)
|
||||
case OVS_VPORT_TYPE_GRE:
|
||||
return "gre";
|
||||
|
||||
case OVS_VPORT_TYPE_GRE64:
|
||||
return "gre64";
|
||||
|
||||
case OVS_VPORT_TYPE_VXLAN:
|
||||
return "vxlan";
|
||||
|
||||
@@ -794,8 +791,6 @@ netdev_to_ovs_vport_type(const struct netdev *netdev)
|
||||
return OVS_VPORT_TYPE_STT;
|
||||
} else if (!strcmp(type, "geneve")) {
|
||||
return OVS_VPORT_TYPE_GENEVE;
|
||||
} else if (strstr(type, "gre64")) {
|
||||
return OVS_VPORT_TYPE_GRE64;
|
||||
} else if (strstr(type, "gre")) {
|
||||
return OVS_VPORT_TYPE_GRE;
|
||||
} else if (!strcmp(type, "vxlan")) {
|
||||
|
Reference in New Issue
Block a user