GEt DSR neighbor node

1.3k Views Asked by At

i am working in ns2 DSR protocol. i wnt to learn how to get neighbor node in DSR protocol and how to get Routing table in DSR. please help me

advance thanks

1

There are 1 best solutions below

0
On

Use the addRoute function defined under mobicache.cc to display the cache contents..a simple printf statement will display all the routes each time the addRoute function is called:

path &p = cache[0];
printf("%s %d %s", routecache->net_id.dump(), p.length(), p.dump());