Hi,
I'm trying to port my demo to OF1.3. The first is step to replicate the same implementation done for OF1.0 which uses call conditions based on DPIDs.
However, if I switch to OF1.3 using the same Composition Spec (see below), the CallCondition is ignored as the two modules receive all the packetins.
Any idea?
`
<Module id="org.onosproject.fwd" loaderIdentification="org.onosproject.fwd" noFenceSupport="false">
<CallCondition events="packetIn" datapaths="11"/>
</Module>
<Module id="FW_Router" loaderIdentification="fw_router.py" noFenceSupport="false">
<CallCondition events="packetIn" datapaths="10"/>
</Module>
<ParallelCall resolutionPolicy="pass">
<ModuleCall module="org.onosproject.fwd" priority="1"/>
<ModuleCall module="FW_Router" priority="2"/>
</ParallelCall>
`
Hi,
I'm trying to port my demo to OF1.3. The first is step to replicate the same implementation done for OF1.0 which uses call conditions based on DPIDs.
However, if I switch to OF1.3 using the same Composition Spec (see below), the CallCondition is ignored as the two modules receive all the packetins.
Any idea?
`