Amazing technological breakthrough possible @S-Logix pro@slogix.in

Office Address

  • #5, First Floor, 4th Street Dr. Subbarayan Nagar Kodambakkam, Chennai-600 024 Landmark : Samiyar Madam
  • 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;

}