summaryrefslogtreecommitdiff
path: root/build-aux/extract-ofp-msgs
diff options
context:
space:
mode:
authorAlexandru Copot <alex.mihai.c@gmail.com>2014-03-03 15:22:32 +0200
committerBen Pfaff <blp@nicira.com>2014-03-23 14:44:58 -0700
commitc37c03826ce05e0d8262180b102923574eea01eb (patch)
treee401e8b2112d7fda1632764ae74e3db8c9bf5fed /build-aux/extract-ofp-msgs
parent32260212a0687b6d14544a93a17363683bf41ea5 (diff)
downloadopenvswitch-c37c03826ce05e0d8262180b102923574eea01eb.tar.gz
ofproto: Allow the use of the OpenFlow 1.4 protocol
This defines the version number for OpenFlow 1.4 so that the switch can actually use it. The ovsdb schema is also modified. Signed-off-by: Alexandru Copot <alex.mihai.c@gmail.com> Cc: Daniel Baluta <dbaluta@ixiacom.com> [blp@nicira.com adjusted code in cases where 1.3 and 1.4 are the same] Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'build-aux/extract-ofp-msgs')
-rwxr-xr-xbuild-aux/extract-ofp-msgs8
1 files changed, 4 insertions, 4 deletions
diff --git a/build-aux/extract-ofp-msgs b/build-aux/extract-ofp-msgs
index 448e7dbb9..957119219 100755
--- a/build-aux/extract-ofp-msgs
+++ b/build-aux/extract-ofp-msgs
@@ -26,10 +26,10 @@ version_map = {"1.0": (OFP10_VERSION, OFP10_VERSION),
"1.2": (OFP12_VERSION, OFP12_VERSION),
"1.3": (OFP13_VERSION, OFP13_VERSION),
"1.4": (OFP14_VERSION, OFP14_VERSION),
- "1.0+": (OFP10_VERSION, OFP13_VERSION),
- "1.1+": (OFP11_VERSION, OFP13_VERSION),
- "1.2+": (OFP12_VERSION, OFP13_VERSION),
- "1.3+": (OFP13_VERSION, OFP13_VERSION),
+ "1.0+": (OFP10_VERSION, OFP14_VERSION),
+ "1.1+": (OFP11_VERSION, OFP14_VERSION),
+ "1.2+": (OFP12_VERSION, OFP14_VERSION),
+ "1.3+": (OFP13_VERSION, OFP14_VERSION),
"1.4+": (OFP14_VERSION, OFP14_VERSION),
"1.0-1.1": (OFP10_VERSION, OFP11_VERSION),
"1.0-1.2": (OFP10_VERSION, OFP12_VERSION),