00001 #ifndef _HLBR_DECODE_UDP_H_ 00002 #define _HLBR_DECODE_UDP_H_ 00003 00004 #include "../config.h" 00005 #include "../engine/hlbr.h" 00006 #include "decode.h" 00007 00008 typedef struct udp_header { 00009 unsigned short source; 00010 unsigned short dest; 00011 unsigned short len; 00012 unsigned short check; 00013 } UDPHdr; 00014 00015 00016 typedef struct udp_data{ 00017 UDPHdr* Header; 00018 } UDPData; 00019 00020 00021 int InitDecoderUDP(); 00022 00023 #endif