GetPacket.h
上传用户:qxsjcl
上传日期:2007-01-08
资源大小:263k
文件大小:1k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. // GetPacket.h : main header file for the GETPACKET application
  2. //
  3. #if !defined(AFX_GETPACKET_H__D37399B5_918F_11D3_93DD_00A0C9685ADF__INCLUDED_)
  4. #define AFX_GETPACKET_H__D37399B5_918F_11D3_93DD_00A0C9685ADF__INCLUDED_
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h"       // main symbols
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CGetPacketApp:
  14. // See GetPacket.cpp for the implementation of this class
  15. //
  16. class CGetPacketApp : public CWinApp
  17. {
  18. public:
  19. CGetPacketApp();
  20. //filters
  21. CStringArray SourceIP;
  22. CStringArray DestIP;
  23. CDWordArray  SourcePort;
  24. CDWordArray  DestPort;
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CGetPacketApp)
  28. public:
  29. virtual BOOL InitInstance();
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. //{{AFX_MSG(CGetPacketApp)
  33. afx_msg void OnAppAbout();
  34. // NOTE - the ClassWizard will add and remove member functions here.
  35. //    DO NOT EDIT what you see in these blocks of generated code !
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. /////////////////////////////////////////////////////////////////////////////
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_GETPACKET_H__D37399B5_918F_11D3_93DD_00A0C9685ADF__INCLUDED_)