#include <aodv.h>
Inheritance diagram for RouteCacheTimer:


Public Member Functions | |
| RouteCacheTimer (AODV *a) | |
| void | handle (Event *) |
Private Attributes | |
| AODV * | agent |
| Event | intr |
|
|
Definition at line 158 of file aodv.h. References agent.
00158 : agent(a) {} |
|
|
Implements Handler. Definition at line 175 of file aodv.cc. References agent, Scheduler::instance(), intr, AODV::rt_purge(), and Scheduler::schedule(). Referenced by AODV::command().
00175 {
00176 agent->rt_purge();
00177 #define FREQUENCY 0.5 // sec
00178 Scheduler::instance().schedule(this, &intr, FREQUENCY);
00179 }
|
Here is the call graph for this function:

|
|
Definition at line 161 of file aodv.h. Referenced by handle(), and RouteCacheTimer(). |
|
|
Definition at line 162 of file aodv.h. Referenced by handle(). |
1.3.3