On Thu, 21 Jun 2018 12:47:47 +0900,
Valson Pereira wrote:
> how i can specify multiples flags in the same OFPFlowMod  message? (e.g.:
> OFPFF_CHECK_OVERLAP and OFPFF_SEND_FLOW_REM)

It's a bitmap. Use a logical or operator, for example:

OFPFlowMod(dp, match, ..., flags= OFPFF_SEND_FLOW_REM |
    OFPFF_CHECK_OVERLAP)

--
IWAMOTO Toshihiro

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Ryu-devel mailing list
Ryu-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to