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