

Public Member Functions | |
| HttpUInvalClass () | |
| TclObject * | create (int argc, const char *const *argv) |
|
|
Definition at line 83 of file inval-agent.cc.
00083 : TclClass("Application/TcpApp/HttpInval") {} |
|
||||||||||||
|
Definition at line 84 of file inval-agent.cc. References PT_INVAL, and Agent::set_pkttype().
00084 {
00085 if (argc != 5)
00086 return NULL;
00087 Agent *a = (Agent *)TclObject::lookup(argv[4]);
00088 a->set_pkttype(PT_INVAL); // It's TCP but used for invalidation
00089 if (a == NULL)
00090 return NULL;
00091 return (new HttpUInvalAgent(a));
00092 }
|
Here is the call graph for this function:

1.3.3