controller/controller: make send_flow_mod() allow default value for priority

Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
Isaku Yamahata 2012-04-04 18:37:57 +09:00 committed by FUJITA Tomonori
parent 7d19e5c7df
commit 10fcdec3b3

View File

@ -206,8 +206,10 @@ class Datapath(object):
self.send_msg(packet_out)
def send_flow_mod(self, rule, cookie, command, idle_timeout, hard_timeout,
priority, buffer_id=0xffffffff,
priority=None, buffer_id=0xffffffff,
out_port=None, flags=0, actions=None):
if priority is None:
priority = self.ofproto.OFP_DEFAULT_PRIORITY
if out_port is None:
out_port = self.ofproto.OFPP_NONE
flow_format = rule.flow_format()