Skip to content

Commit ede645d

Browse files
hormsblp
authored andcommitted
ofp-msgs: Allow 1.0-1.2 range
This is intended for use with OFPRAW_OFPST_TABLE_REQUEST in order for it to be symmetric with OpenFlow 1.0, 1.1 and 1.2 versions of OFPRAW_OFPST1TABLE_REPLY. OpenFlow 1.3 introduces yet another format for OFPRAW_OFPST1TABLE_REPLY. Signed-off-by: Simon Horman <horms@verge.net.au> Signed-off-by: Ben Pfaff <blp@nicira.com>
1 parent 6ec5f0c commit ede645d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

build-aux/extract-ofp-msgs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ version_map = {"1.0": (OFP10_VERSION, OFP10_VERSION),
2828
"1.1+": (OFP11_VERSION, OFP13_VERSION),
2929
"1.2+": (OFP12_VERSION, OFP13_VERSION),
3030
"1.3+": (OFP13_VERSION, OFP13_VERSION),
31-
"1.0-1.1": (OFP10_VERSION, OFP11_VERSION)}
31+
"1.0-1.1": (OFP10_VERSION, OFP11_VERSION),
32+
"1.0-1.2": (OFP10_VERSION, OFP12_VERSION)}
3233

3334
def get_line():
3435
global line

0 commit comments

Comments
 (0)