summaryrefslogtreecommitdiff
path: root/include/openvswitch
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2017-04-24 11:49:59 -0700
committerBen Pfaff <blp@ovn.org>2019-06-20 10:26:30 -0700
commit13c952ca05210c98d3b9773120a1ab48b05e4dce (patch)
tree4a4f97892c6e5107cfd779eaab3313af8b45cfeb /include/openvswitch
parent4332b671993180d264d076a412075c1c62f708a6 (diff)
downloadopenvswitch-13c952ca05210c98d3b9773120a1ab48b05e4dce.tar.gz
OpenFlow: Enable OpenFlow 1.5 by default.
Open vSwitch now supports all OpenFlow 1.5 required features, so enable it by default. Acked-by: Numan Siddique <nusiddiq@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'include/openvswitch')
-rw-r--r--include/openvswitch/ofp-protocol.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/openvswitch/ofp-protocol.h b/include/openvswitch/ofp-protocol.h
index 7873fdd12..741ddc458 100644
--- a/include/openvswitch/ofp-protocol.h
+++ b/include/openvswitch/ofp-protocol.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008-2017 Nicira, Inc.
+ * Copyright (c) 2008-2017, 2019 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -151,7 +151,8 @@ enum ofputil_protocol ofputil_protocols_from_version_bitmap(uint32_t bitmap);
(1u << OFP11_VERSION) | \
(1u << OFP12_VERSION) | \
(1u << OFP13_VERSION) | \
- (1u << OFP14_VERSION))
+ (1u << OFP14_VERSION) | \
+ (1u << OFP15_VERSION))
#define OFPUTIL_DEFAULT_VERSIONS OFPUTIL_SUPPORTED_VERSIONS
enum ofputil_protocol ofputil_protocols_from_string(const char *s);