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