00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef RELMSGGENERIC_H
00022 #define RELMSGGENERIC_H
00023
00024 #include <iostream>
00025 #include "RelMsg.h"
00026 #include "RelCommon.h"
00027
00028 using namespace std;
00029
00030 class TRelMsgGeneric: public TRelMsg {
00031
00032 public:
00033 TRelMsgGeneric(TCtx * ctx, int iface, SmartPtr<TIPv6Addr> addr, char * data, int dataLen);
00034
00035 string getName();
00036 bool check();
00037
00038 };
00039
00040 #endif
00041