X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=build-aux%2Fextract-ofp-msgs;h=9571192193ad08ab6f2b271e8c70b80c32e95c4a;hb=cfc50ae514f805dcd9c14589f21158185424daf6;hp=5eaa141cae25da04b53a1c4a58c9d661db0972bb;hpb=2e1ae2005ed347d2dfebd23fff40c54a1a2a6716;p=sliver-openvswitch.git diff --git a/build-aux/extract-ofp-msgs b/build-aux/extract-ofp-msgs index 5eaa141ca..957119219 100755 --- a/build-aux/extract-ofp-msgs +++ b/build-aux/extract-ofp-msgs @@ -10,6 +10,7 @@ OFP10_VERSION = 0x01 OFP11_VERSION = 0x02 OFP12_VERSION = 0x03 OFP13_VERSION = 0x04 +OFP14_VERSION = 0x05 NX_VENDOR_ID = 0x00002320 @@ -24,10 +25,12 @@ version_map = {"1.0": (OFP10_VERSION, OFP10_VERSION), "1.1": (OFP11_VERSION, OFP11_VERSION), "1.2": (OFP12_VERSION, OFP12_VERSION), "1.3": (OFP13_VERSION, OFP13_VERSION), - "1.0+": (OFP10_VERSION, OFP13_VERSION), - "1.1+": (OFP11_VERSION, OFP13_VERSION), - "1.2+": (OFP12_VERSION, OFP13_VERSION), - "1.3+": (OFP13_VERSION, OFP13_VERSION), + "1.4": (OFP14_VERSION, OFP14_VERSION), + "1.0+": (OFP10_VERSION, OFP14_VERSION), + "1.1+": (OFP11_VERSION, OFP14_VERSION), + "1.2+": (OFP12_VERSION, OFP14_VERSION), + "1.3+": (OFP13_VERSION, OFP14_VERSION), + "1.4+": (OFP14_VERSION, OFP14_VERSION), "1.0-1.1": (OFP10_VERSION, OFP11_VERSION), "1.0-1.2": (OFP10_VERSION, OFP12_VERSION), "1.1-1.2": (OFP11_VERSION, OFP12_VERSION),