[ovs-dev] Help to Modify OVS Source Code

2017-10-02 Thread Mohammed Kamel
Hello, I am new at mining and OVS. I need help with modifying the OVS source code to make the following: I am using mininet with OVS and want to print a message on the counsel each time the OVS switch receive an LLDP packet from the controller. which file should I modify some people told me to

Re: [ovs-dev] Help to Modify OVS Source Code

2017-09-26 Thread Ashish Varma
You can look at the "handle_packet_out" function at "ofproto.c" which handles the "PACKET_OUT" message from the controller. (where you can check for the LLDP eth type in the packet) On Tue, Sep 26, 2017 at 9:56 AM, Mohammed Kamel wrote: > Hello, > > I am new at mining and

Re: [ovs-dev] Help to Modify OVS Source Code

2017-09-26 Thread Mohammed Kamel
Hello, I am new at mining and OVS. I need help with modifying the OVS source code to make the following: I want to print a message on the counsel each time the OVS switch receive a LLDP packet from the controller. and how to use this modified code in the mininet?? I really need your help with

Re: [ovs-dev] Help to Modify OVS Source Code

2017-03-27 Thread Ben Pfaff
On Mon, Mar 27, 2017 at 11:17:12AM +0530, Attitude Killer wrote: > I am a beginner with ovs and C as well, can anyone please help me with what > I can do with the provided source code and how? If you're a beginner in C, I don't think that modifying OVS is a good project to start with.

[ovs-dev] Help to Modify OVS Source Code

2017-03-26 Thread Attitude Killer
Hello all I am totally new to OVS, I want some tricks and tips with help of you to make some changes in ovs source code in order to better understand it. I googled but I am only getting tutorials about commands of OVS but not about changing ovs code or modifying it. I am a beginner with ovs and