00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 class TClntMsgRelease;
00022 #ifndef CLNTMSGRELEASE_H
00023 #define CLNTMSGRELEASE_H
00024 #include "ClntMsg.h"
00025
00026 class TClntMsgRelease : public TClntMsg
00027 {
00028 public:
00029 TClntMsgRelease(SmartPtr<TClntIfaceMgr> IfMgr,
00030 SmartPtr<TClntTransMgr> TransMgr,
00031 SmartPtr<TClntCfgMgr> ConfMgr,
00032 SmartPtr<TClntAddrMgr> AddrMgr,
00033 int iface, SmartPtr<TIPv6Addr> addr=NULL);
00034
00035 TClntMsgRelease(SmartPtr<TClntIfaceMgr> IfMgr,
00036 SmartPtr<TClntTransMgr> TransMgr,
00037 SmartPtr<TClntCfgMgr> CfgMgr,
00038 SmartPtr<TClntAddrMgr> AddrMgr,
00039 int iface, SmartPtr<TIPv6Addr> addr,
00040 TContainer<SmartPtr <TAddrIA> > iaLst);
00041
00042 void answer(SmartPtr<TClntMsg> Rep);
00043 void doDuties();
00044 bool check();
00045 string getName();
00046 ~TClntMsgRelease();
00047 };
00048 #endif
00049