Research breakthrough possible @S-Logix pro@slogix.in

Office Address

  • 2nd Floor, #7a, High School Road, Secretariat Colony Ambattur, Chennai-600053 (Landmark: SRM School) Tamil Nadu, India
  • pro@slogix.in
  • +91- 81240 01111

Social List

How to Reduce the Redundant Rebroadcast in Routing using NS2?

Description

The common neighbours count is subtracted from its own neighbour count. It results in uncovered neighbour count of the corresponding node. If uncovered neighbours count is greater than threshold then the packet is again forwarded(rebroadcast) otherwise it is discarded. It reduces the control packets.

C++ part :

if (uncovered_neighbours_count[index] > threshold ) {

forward((aodv_rt_entry*) 0, p, DELAY);

}

else {

Packet::free(p);

return;

}