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