aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-11-18 07:58:16 +0000
committerGuy Harris <guy@alum.mit.edu>2013-11-18 07:58:16 +0000
commit87fb87b7698df4f172b0d5efb00afcd7dc2a2ce0 (patch)
tree89aab26557411aa1b8740a36d785147e34311594 /epan
parent9965f29399a31ff475cd03718bf0a5a2a3bbe3a6 (diff)
I guess "v4" is 1.3 and "v5" is 1.4. I'm sure there's a reason why that
makes sense of a sort.... svn path=/trunk/; revision=53409
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-openflow_v4.c4
-rw-r--r--epan/dissectors/packet-openflow_v5.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-openflow_v4.c b/epan/dissectors/packet-openflow_v4.c
index f595ac2e59..d95f93d828 100644
--- a/epan/dissectors/packet-openflow_v4.c
+++ b/epan/dissectors/packet-openflow_v4.c
@@ -730,7 +730,7 @@ static expert_field ei_openflow_v4_queue_prop_undecoded = EI_INIT;
static expert_field ei_openflow_v4_message_undecoded = EI_INIT;
static const value_string openflow_v4_version_values[] = {
- { 0x04, "1.4" },
+ { 0x04, "1.3" },
{ 0, NULL }
};
@@ -7870,7 +7870,7 @@ proto_register_openflow_v4(void)
expert_module_t *expert_openflow_v4;
/* Register the protocol name and description */
- proto_openflow_v4 = proto_register_protocol("OpenFlow 1.4",
+ proto_openflow_v4 = proto_register_protocol("OpenFlow 1.3",
"openflow_v4", "openflow_v4");
new_register_dissector("openflow_v4", dissect_openflow_v4, proto_openflow_v4);
diff --git a/epan/dissectors/packet-openflow_v5.c b/epan/dissectors/packet-openflow_v5.c
index 41e572ac63..38b1018623 100644
--- a/epan/dissectors/packet-openflow_v5.c
+++ b/epan/dissectors/packet-openflow_v5.c
@@ -8149,7 +8149,7 @@ proto_register_openflow_v5(void)
expert_module_t *expert_openflow_v5;
/* Register the protocol name and description */
- proto_openflow_v5 = proto_register_protocol("OpenFlow 1.5",
+ proto_openflow_v5 = proto_register_protocol("OpenFlow 1.4",
"openflow_v5", "openflow_v5");
new_register_dissector("openflow_v5", dissect_openflow_v5, proto_openflow_v5);