compress.h
上传用户:nbcables
上传日期:2007-01-11
资源大小:1243k
文件大小:1k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. #ifndef _COMPRESS_H_
  2. typedef int (WINAPI *COMPRESSDATA)(char *, int, char *, int *);
  3. typedef int (WINAPI *DECOMPRESSDATA)(char *, int, char *, int *);
  4. typedef struct
  5. {
  6. char app[128];
  7. char ip[16];
  8. char local_port_type[2];
  9. int server_port;
  10. }COMPRESS_INFO;
  11. class CompressFilter
  12. {
  13. public:
  14. CompressFilter();
  15. ~CompressFilter();
  16. BOOL CompressCheck(char *remote_ip, int local_port, int remote_port);
  17. int CompressData(char *data, int data_len, char *data_compressed, int *pdata_compressed_len);
  18. int DecompressData(char *data, int data_len, char *data_decompressed, int *pdata_decompressed_len);
  19. public:
  20. HANDLE hModCompress;
  21. COMPRESSDATA myCompressData;
  22. DECOMPRESSDATA myDecompressData;
  23. COMPRESS_INFO *m_pCompressInfo;
  24. int m_compress_info_count;
  25. };
  26. #endif