Note: The list of 'deprecated_value' are used by '_reserved_num_to_user()' to ignore values those are deprecated in OpenFlow Spec.
Signed-off-by: Minoru TAKAHASHI <[email protected]> --- ryu/lib/ofctl_utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ryu/lib/ofctl_utils.py b/ryu/lib/ofctl_utils.py index 3ec8c36..448fc9d 100644 --- a/ryu/lib/ofctl_utils.py +++ b/ryu/lib/ofctl_utils.py @@ -28,7 +28,9 @@ class OFCtlUtil(object): def __init__(self, ofproto): self.ofproto = ofproto self.deprecated_value = [ - 'OFPTFPT_EXPERIMENTER_SLAVE', 'OFPTFPT_EXPERIMENTER_MASTER'] + 'OFPTFPT_EXPERIMENTER_SLAVE', + 'OFPTFPT_EXPERIMENTER_MASTER', + 'OFPQCFC_EPERM'] def _reserved_num_from_user(self, num, prefix): if isinstance(num, int): -- 1.9.1 ------------------------------------------------------------------------------ Transform Data into Opportunity. Accelerate data analysis in your applications with Intel Data Analytics Acceleration Library. Click to learn more. http://pubads.g.doubleclick.net/gampad/clk?id=278785351&iu=/4140 _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
