Add yang models for bundle messages
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / util / EncodeConstants.java
index dad7b76f1b4c128443a99e6b9fcffc8922f6334a..8c6539b6e75135ec4d73ce3d203f57caf7900308 100644 (file)
@@ -62,8 +62,16 @@ public abstract class EncodeConstants {
 
     /** OF v1.0 maximal port name length */
     public static final byte MAX_PORT_NAME_LENGTH = 16;
-    /** OF v1.3 length of experimenter_ids - see Multipart TableFeatures (properties) message */
-    public static final byte EXPERIMENTER_IDS_LENGTH = 8;
+
+    /** ONF Approved Extensions Constants */
+    /** Experimenter ID of ONF approved extensions */
+    public static final long ONF_EXPERIMENTER_ID = 0x4F4E4600;
+    /** ONFOXM_ET_TCP_FLAGS value */
+    public static final int ONFOXM_ET_TCP_FLAGS = 42;
+    /** ONF_ET_BUNDLE_CONTROL message type */
+    public static final int ONF_ET_BUNDLE_CONTROL = 2300;
+    /** ONF_ET_BUNDLE_ADD_MESSAGE message type */
+    public static final int ONF_ET_BUNDLE_ADD_MESSAGE = 2301;
 
     private EncodeConstants() {
         //not called