00001 #ifndef _HLBR_DECODE_IP_DEFRAG_H_ 00002 #define _HLBR_DECODE_IP_DEFRAG_H_ 00003 00004 #include "../config.h" 00005 #include "../engine/hlbr.h" 00006 #include "decode.h" 00007 #include "decode_ip.h" 00008 00009 #define FRAG_TIMEOUT 10 00010 00011 #define FRAG_FLAG_RESERVED 4 00012 #define FRAG_FLAG_MAY_FRAG 2 00013 #define FRAG_FLAG_MORE 1 00014 00015 typedef struct ip_defrag_data{ 00016 char IsRebuilt; 00017 } IPDefragData; 00018 00019 int InitDecoderIPDefrag(); 00020 00021 #endif