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