add priority option to flow entry
authorstevenvanrossem <steven.vanrossem@intec.ugent.be>
Fri, 5 Aug 2016 13:57:59 +0000 (15:57 +0200)
committerstevenvanrossem <steven.vanrossem@intec.ugent.be>
Fri, 5 Aug 2016 13:57:59 +0000 (15:57 +0200)
src/emuvim/api/rest/network.py
src/emuvim/dcemulator/net.py

index 3c0062e..e3945b0 100755 (executable)
@@ -85,6 +85,7 @@ class NetworkAction(Resource):
             match = data.get("match")
             bidirectional = data.get("bidirectional")
             cookie = data.get("cookie")
+            priority = data.get("priority")
             c = net.setChain(
                 vnf_src_name, vnf_dst_name,
                 vnf_src_interface=vnf_src_interface,
@@ -93,7 +94,8 @@ class NetworkAction(Resource):
                 weight=weight,
                 match=match,
                 bidirectional=bidirectional,
-                cookie=cookie)
+                cookie=cookie,
+                priority=priority)
             # return setChain response
             return str(c), 200
         except Exception as ex:
index cbe668f..bca20b2 100755 (executable)
@@ -405,6 +405,7 @@ class DCNetwork(Containernet):
         path = kwargs.get('path')
         current_hop = kwargs.get('current_hop')
         vlan = kwargs.get('vlan')
+        priority = kwargs.get('priority')
 
         s = ','
         if match_input:
@@ -415,7 +416,8 @@ class DCNetwork(Containernet):
 
         if cookie:
             flow['cookie'] = int(cookie)
-
+        if priority:
+            flow['priority'] = int(priority)
 
         flow['actions'] = []