[ns] help-neighbor table

2013-06-06 Thread Vimala Jose
Hi everyone, I am trying to implement detection of RREQ packet dropper. For that, I need to store all the neighbors of each node in the network. I have found that we got a neighbor table already in AODV. I am able to print it. But what I want is, to store that table along with a new field in it

[ns] Help-Neighbor table

2013-06-06 Thread Vimala Jose
Hi, I am trying to implement detection of RREQ packet dropper. For that, I need to store all the neighbors of each node in the network. I have found that we got a neighbor table already in AODV. I am able to print it. But what I want is, to store that table along with a new field in it called

Re: [ns] Help-Neighbor table

2013-06-06 Thread duachuot30_4
I think i can help you 1) in file aodv_rtable.h: you can add FLAG field to neighbor table: class AODV_Neighbor { //some code... // double nb_expire; // ALLOWED_HELLO_LOSS * HELLO_INTERVAL booleanFLAG; //New field: FLAG }; 2) in