#ifndef __BASIC_H__ #define __BASIC_H__ #include "md5.h" typedef struct basic_header { const char* user; const char* password; unsigned char key[MD5_LEN]; } basic_header_t; int basic_parse(const char* header, ha_buffer_t* buf, basic_header_t* rec); #endif /* __BASIC_H__ */