os-ken/ryu/ofproto
Minoru TAKAHASHI 6b3c4dfd43 ofproto: Fixes invalid async config property types
The following types are presents in Openflow Spec v1.4.0 and 1.4.1.

OFPTFPT_EXPERIMENTER_SLAVE = 0xFFFE
OFPTFPT_EXPERIMENTER_MASTER = 0xFFFF

Prefix of async config property type should be 'OFPACPT_' but the above are starting with 'OFPTFPT_'.
Because these types have been fixed in Openflow v1.5.0, this patch fixes the above types in ofproto_v1_4.py as follows.

OFPTFPT_EXPERIMENTER_SLAVE = 0xFFFE  <-- treated as deprecated[*1]
OFPTFPT_EXPERIMENTER_MASTER = 0xFFFF <-- treated as deprecated[*1]
OFPACPT_EXPERIMENTER_SLAVE = 0xFFFE
OFPACPT_EXPERIMENTER_MASTER = 0xFFFF

[*1] OFPTFPT_EXPERIMENTER_SLAVE/MASTER are left in ofproto_v1_4.py for backward compatibility.

Signed-off-by: Minoru TAKAHASHI <takahashi.minoru7@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2016-02-18 13:24:06 +09:00
..
__init__.py ofproto: get rid of fragile and slow glob'ing modules 2014-03-25 19:42:48 +09:00
ether.py Move the definitions of ether types and inet protocols to lib.packet 2015-02-15 09:39:49 +09:00
inet.py Move the definitions of ether types and inet protocols to lib.packet 2015-02-15 09:39:49 +09:00
nicira_ext.py Implement NXActionNAT 2016-02-01 16:38:34 +09:00
nx_actions.py Implement NXActionRegLoad 2016-02-10 14:47:44 +09:00
nx_match.py doc: Add Nicira Extension Structures references 2016-01-19 10:52:21 +09:00
ofproto_common.py fix NX_EXPERIMENTER_ID 2014-03-16 20:36:54 +09:00
ofproto_parser.py Fix i386 test failures 2016-02-18 06:51:53 +09:00
ofproto_protocol.py Fix ImportError(s) with Python3 2015-04-14 05:19:56 +09:00
ofproto_utils.py ofp_handler: Output human readable error msg ev log 2015-09-10 11:14:58 +09:00
ofproto_v1_0_parser.py Fix: "AddrFormatError: address '...' is not an EUIv48" 2016-01-30 23:35:28 +09:00
ofproto_v1_0.py of10: Add __contains__ method into OFPMatch 2015-10-11 21:51:38 +09:00
ofproto_v1_2_parser.py of12/3/4/5: fix to_jsondict of OFPActionSetField 2016-02-10 13:35:13 +09:00
ofproto_v1_2.py ofproto: Sort out the NX OXMs definition 2015-09-18 08:30:29 +09:00
ofproto_v1_3_parser.py of12/3/4/5: fix to_jsondict of OFPActionSetField 2016-02-10 13:35:13 +09:00
ofproto_v1_3.py ofproto: Sort out the NX OXMs definition 2015-09-18 08:30:29 +09:00
ofproto_v1_4_parser.py ofproto: Fixes invalid async config property types 2016-02-18 13:24:06 +09:00
ofproto_v1_4.py ofproto: Fixes invalid async config property types 2016-02-18 13:24:06 +09:00
ofproto_v1_5_parser.py ofproto_v1_5_parser: Add missing field in OFPMeterFeaturesStats 2016-02-10 13:52:53 +09:00
ofproto_v1_5.py ofproto: Sort out the NX OXMs definition 2015-09-18 08:30:29 +09:00
oxm_fields.py OXM/OXS: Initialize exp_type with oxm_field 2015-07-22 19:01:01 +09:00
oxs_fields.py OXM/OXS: Initialize exp_type with oxm_field 2015-07-22 19:01:01 +09:00
oxx_fields.py Fix i386 test failures 2016-02-18 06:51:53 +09:00