logparse.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:0k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #ifndef LOG_PARSE_H
  2. #define LOG_PARSE_H
  3. // Parsing NLANR root cache traces
  4. #include <stdlib.h>
  5. #include "config.h"
  6. struct lf_entry {
  7. double rt; /* request arrival time */
  8. u_int32_t cid; /* client address */
  9. char *sid;
  10. u_int32_t size;  /* page size */
  11. char* url; /* url. NEED to be freed by caller */
  12. };
  13. const int MAXBUF = 4096;
  14. int lf_get_next_entry(FILE *fp, lf_entry &ne);
  15. #endif // LOG_PARSE_H