Uncomment region to check flow

This commit is contained in:
Nico Schottelius 2019-03-26 22:13:17 +01:00
parent b01e2de795
commit 74420d8bbd
1 changed files with 7 additions and 6 deletions

View File

@ -340,13 +340,14 @@ control MyIngress(inout headers hdr,
exit; /* no further v6 processing */
}
v6_networks.apply(); /* egress / routing */
} else if(hdr.ipv4.isValid()) {
if(nat46.apply().hit) { /* v4->v6 */
v6_networks.apply(); /* Now apply v6 egress */
exit; /* no further v4 processing */
}
v4_networks.apply(); /* routing, egress */
}
// else if(hdr.ipv4.isValid()) {
// if(nat46.apply().hit) { /* v4->v6 */
// v6_networks.apply(); /* Now apply v6 egress */
// exit; /* no further v4 processing */
// }
// v4_networks.apply(); /* routing, egress */
// }
}
}