Merge "ovs_lib: add support for OpenFlow 1.5"

This commit is contained in:
Zuul 2018-04-20 13:56:55 +00:00 committed by Gerrit Code Review
commit fc8511cd54
2 changed files with 3 additions and 1 deletions

View File

@ -200,7 +200,8 @@ OF_PROTOCOL_TO_VERSION = {
constants.OPENFLOW11: 2,
constants.OPENFLOW12: 3,
constants.OPENFLOW13: 4,
constants.OPENFLOW14: 5
constants.OPENFLOW14: 5,
constants.OPENFLOW15: 6,
}

View File

@ -150,6 +150,7 @@ OPENFLOW11 = "OpenFlow11"
OPENFLOW12 = "OpenFlow12"
OPENFLOW13 = "OpenFlow13"
OPENFLOW14 = "OpenFlow14"
OPENFLOW15 = "OpenFlow15"
# A placeholder for dead vlans.
DEAD_VLAN_TAG = p_const.MAX_VLAN_TAG + 1