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

网络截获/分析

开发平台:

Visual C++

  1. #if !defined(AFX_FILETERDLG_H__33CCE1F6_9251_11D3_93DF_00A0C9685ADF__INCLUDED_)
  2. #define AFX_FILETERDLG_H__33CCE1F6_9251_11D3_93DF_00A0C9685ADF__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // FileterDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CFileterDlg dialog
  10. #include <winsock.h>
  11. #include "ipaddr.h"
  12. class CFileterDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CFileterDlg(CWnd* pParent = NULL);   // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CFileterDlg)
  19. enum { IDD = IDD_FILTER };
  20. CListBox m_list_sport;
  21. CListBox m_list_dport;
  22. CListBox m_list_dip;
  23. CListBox m_list_sip;
  24. int m_edit_sport;
  25. int m_edit_dport;
  26. //}}AFX_DATA
  27. unsigned char m_sAddr[4];
  28. unsigned char m_dAddr[4];
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CFileterDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. // Generated message map functions
  38. //{{AFX_MSG(CFileterDlg)
  39. virtual BOOL OnInitDialog();
  40. afx_msg void OnButtonSipAdd();
  41. afx_msg void OnButtonDipAdd();
  42. afx_msg void OnButtonSportAdd();
  43. afx_msg void OnButtonDportAdd();
  44. afx_msg void OnButtonDipDel();
  45. afx_msg void OnButtonDportDel();
  46. afx_msg void OnButtonSipDel();
  47. afx_msg void OnButtonSportDel();
  48. virtual void OnOK();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. public:
  52. CIPAddrCtl* m_pSIPAddrCtl;
  53. CIPAddrCtl* m_pDIPAddrCtl;
  54. };
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_FILETERDLG_H__33CCE1F6_9251_11D3_93DF_00A0C9685ADF__INCLUDED_)