From 2a95c185e1fcde27a17f39c72657a1e8efb26371 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori Date: Sun, 16 Feb 2014 14:56:25 +0900 Subject: [PATCH] of13/14: fix OFPFMFC_TABLE_FULL typo Reported-by: Morgan Yang Signed-off-by: FUJITA Tomonori Reviewed-by: YAMAMOTO Takashi --- ryu/ofproto/ofproto_v1_3.py | 2 +- ryu/ofproto/ofproto_v1_4.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ryu/ofproto/ofproto_v1_3.py b/ryu/ofproto/ofproto_v1_3.py index e7a8593d..d2437845 100644 --- a/ryu/ofproto/ofproto_v1_3.py +++ b/ryu/ofproto/ofproto_v1_3.py @@ -957,7 +957,7 @@ OFPBMC_EPERM = 11 # Permissions error. # enum ofp_flow_mod_failed_code OFPFMFC_UNKNOWN = 0 # Unspecified error. -OFPFMFC_TABLES_FULL = 1 # Flow not added because table was full. +OFPFMFC_TABLE_FULL = 1 # Flow not added because table was full. OFPFMFC_BAD_TABLE_ID = 2 # Table does not exist OFPFMFC_OVERLAP = 3 # Attempted to add overlapping flow # with CHECK_OVERLAP flag set. diff --git a/ryu/ofproto/ofproto_v1_4.py b/ryu/ofproto/ofproto_v1_4.py index c9316cea..f566c73f 100644 --- a/ryu/ofproto/ofproto_v1_4.py +++ b/ryu/ofproto/ofproto_v1_4.py @@ -779,7 +779,7 @@ OFPBMC_EPERM = 11 # Permissions error. # enum ofp_flow_mod_failed_code OFPFMFC_UNKNOWN = 0 # Unspecified error. -OFPFMFC_TABLES_FULL = 1 # Flow not added because table was full. +OFPFMFC_TABLE_FULL = 1 # Flow not added because table was full. OFPFMFC_BAD_TABLE_ID = 2 # Table does not exist OFPFMFC_OVERLAP = 3 # Attempted to add overlapping flow with # CHECK_OVERLAP flag set.