summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYAMAMOTO Takashi <yamamoto@valinux.co.jp>2014-02-07 13:24:25 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2014-02-07 19:53:46 +0900
commitd00d1498d7adedb35df5c58575b583a5dad76f14 (patch)
tree017a6d90ed9e6c44246e169f61fbce70f071606b
parent4d9382ce7af92e079d6232a793361975dc336cac (diff)
ofproto_v1_3_parser: add a comment about extensions support
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--ryu/ofproto/ofproto_v1_3_parser.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py
index 64fc319d..079cb66f 100644
--- a/ryu/ofproto/ofproto_v1_3_parser.py
+++ b/ryu/ofproto/ofproto_v1_3_parser.py
@@ -14,6 +14,32 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+"""
+This module implements OpenFlow 1.3.x.
+
+This module also implements some of extensions shown in
+"OpenFlow Extensions for 1.3.X Pack 1".
+Namely, the following extensions are implemented.
+
+ - EXT-236 Bad flow entry priority error Extension
+ - EXT-237 Set async config error Extension
+ - EXT-256 PBB UCA header field Extension
+ - EXT-260 Duplicate instruction error Extension
+ - EXT-264 Multipart timeout errors Extension
+
+The following extensions are partially implemented.
+
+ - EXT-187 Flow entry notifications Extension (ONFMP_FLOW_MONITOR only)
+ - EXT-230 Bundle Extension (Error codes only)
+ - EXT-232 Table synchronisation Extension (Error codes only)
+
+The following extensions are not implemented yet.
+
+ - EXT-191 Role Status Extension
+ - EXT-192-e Flow entry eviction Extension
+ - EXT-192-v Vacancy events Extension
+"""
+
import struct
import itertools