OpenFlow 1.0 support completed
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / OFVersionDetector.java
index dc9e17b28726c49d7297c365e8bb7c6284788700..d5b31e261651088f868119c68713856a961298e5 100644 (file)
@@ -19,7 +19,7 @@ import org.slf4j.LoggerFactory;
 public class OFVersionDetector extends ByteToMessageDecoder {
 
     /** Version number of OpenFlow 1.0 protocol */
-    private static final byte OF10_VERSION_ID = 0x01;
+    public static final byte OF10_VERSION_ID = 0x01;
     /** Version number of OpenFlow 1.3 protocol */
     public static final byte OF13_VERSION_ID = 0x04;
     private static final Logger LOGGER = LoggerFactory.getLogger(OFVersionDetector.class);