00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 class TSrvMsgRenew;
00022 #ifndef SRVMSGRENEW_H
00023 #define SRVMSGRENEW_H
00024 #include "SrvMsg.h"
00025
00026 class TSrvMsgRenew : public TSrvMsg
00027 {
00028 public:
00029 TSrvMsgRenew(SmartPtr<TSrvIfaceMgr> IfaceMgr,
00030 SmartPtr<TSrvTransMgr> TransMgr,
00031 SmartPtr<TSrvCfgMgr> CfgMgr,
00032 SmartPtr<TSrvAddrMgr> AddrMgr,
00033 int iface, SmartPtr<TIPv6Addr> addr);
00034
00035 TSrvMsgRenew(SmartPtr<TSrvIfaceMgr> IfaceMgr,SmartPtr<TSrvTransMgr> TransMgr,
00036 SmartPtr<TSrvCfgMgr> CfgMgr,SmartPtr<TSrvAddrMgr> AddrMgr,
00037 int iface, SmartPtr<TIPv6Addr> addr,
00038 char* buf, int bufSize);
00039
00040 void doDuties();
00041 unsigned long getTimeout();
00042 string getName();
00043 bool check();
00044 ~TSrvMsgRenew();
00045 };
00046
00047 #endif
00048