Support for SNAT and DNAT features in L3 forwarding services.
[vpnservice.git] / fibmanager / fibmanager-impl / src / main / java / org / opendaylight / vpnservice / fibmanager / FibConstants.java
diff --git a/fibmanager/fibmanager-impl/src/main/java/org/opendaylight/vpnservice/fibmanager/FibConstants.java b/fibmanager/fibmanager-impl/src/main/java/org/opendaylight/vpnservice/fibmanager/FibConstants.java
new file mode 100644 (file)
index 0000000..a2cfc76
--- /dev/null
@@ -0,0 +1,18 @@
+/*
+ * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.vpnservice.fibmanager;
+
+import java.math.BigInteger;
+
+public class FibConstants {
+    static final BigInteger COOKIE_VM_LFIB_TABLE = new BigInteger("8000002", 16);
+    static final BigInteger COOKIE_VM_FIB_TABLE =  new BigInteger("8000003", 16);
+    static final BigInteger COOKIE_TUNNEL = new BigInteger("9000000", 16);
+    static final int DEFAULT_FIB_FLOW_PRIORITY = 10;
+    static final String FLOWID_PREFIX = "L3.";
+}