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

Office Address

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;

}