[VOL-2517] Use VLAN_ANY to check for tagged traffic instead of valid 4095

Change-Id: I2b3498cc22b668d2d12bf571d33ca5aa825075ad
diff --git a/ofagent/utils.py b/ofagent/utils.py
index 7e72bef..c73ecb1 100755
--- a/ofagent/utils.py
+++ b/ofagent/utils.py
@@ -17,6 +17,9 @@
 
 from loxi.pp import PrettyPrinter
 
+# ReservedVlan Transparent Vlan (Masked Vlan, VLAN_ANY in ONOS Flows)
+
+RESERVED_TRANSPARENT_VLAN = 4096
 
 def pp(obj):
     pp = PrettyPrinter(maxwidth=80)