On Jan 14, 2015, at 1:42 AM, Sree Vidya S D <vidya...@gmail.com> wrote:
> Using floodlight controller I am sending some actions to the openvswitch > > Can anybody help me in identifying the function where these actions are > applied to the incoming packets on a switch ? The OpenFLow actions are not directly applied to incoming packets, so there is no function where that happens. OpenFlow actions are translated to internal flow state in ofproto/ofproto-dpif-xlate.c, internal state is translated to datapath actions in lib/odp-util.c. Different datapaths then apply these to the incoming packets, e.g., Linux kernel datapath in datapath/actions.c. Jarno _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev