PortScanDlg.h
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:3k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // PortScanDlg.h : header file
  2. //
  3. #if !defined(AFX_PORTSCANDLG_H__8BD76815_8905_11D6_8F32_00E04CE76240__INCLUDED_)
  4. #define AFX_PORTSCANDLG_H__8BD76815_8905_11D6_8F32_00E04CE76240__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CPortScanDlg dialog
  10. //扫描结果
  11. typedef struct
  12. {
  13. int nAttempts;
  14. TCHAR IPAddress[16];
  15. TCHAR port[5];
  16. BOOL bStatus; //1 = open , 0 = close
  17. }DATA;
  18. class CPortScanDlg : public CDialog
  19. {
  20. // Construction
  21. public:
  22. CPortScanDlg(CWnd* pParent = NULL); // standard constructor
  23. // Dialog Data
  24. //{{AFX_DATA(CPortScanDlg)
  25. enum { IDD = IDD_PORTSCAN_DIALOG };
  26. CProgressCtrl m_cProgress;
  27. CListCtrl m_cResult;
  28. CIPAddressCtrl m_cIP;
  29. CEdit m_cPortTo;
  30. CEdit m_cPortFrom;
  31. CEdit m_cSinglePort;
  32. CEdit m_cAttempts;
  33. CButton m_cBtnStop;
  34. CButton m_cBtnScan;
  35. //}}AFX_DATA
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CPortScanDlg)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. HICON m_hIcon;
  44. BOOL TestConnection(CString IP, UINT nPort);
  45. void ShowHeaders(void); //Shows the headers of member variable m_cResult (See below)
  46. void AddHeader(LPTSTR hdr); //Adds some new headers to m_cResult.
  47. AddItem(int nItem,int nSubItem,LPCTSTR strItem,int nImageIndex = -1); //Adds a new item to m_cResult
  48. BOOL AddColumn(
  49. LPCTSTR strItem,int nItem,int nSubItem = -1,
  50. int nMask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM,
  51. int nFmt = LVCFMT_LEFT);//Adds a new column to m_cResult
  52. UINT m_nMaxAttempts; //试图连接次数的最大值
  53. BOOL m_bSinglePort; //是否只扫描单个端口
  54. UINT m_minPort,m_maxPort; //扫描端口的范围
  55. UINT m_nCounter; //端口的个数
  56. CStringList* m_pColumns; //列表框标题栏
  57. CPtrList* m_pStatusList;//保存扫描结果的链表
  58. // CBrush* m_pBrush;
  59. // Generated message map functions
  60. //{{AFX_MSG(CPortScanDlg)
  61. virtual BOOL OnInitDialog();
  62. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  63. afx_msg void OnPaint();
  64. afx_msg HCURSOR OnQueryDragIcon();
  65. afx_msg void OnDestroy();
  66. afx_msg void OnRadioSingle();
  67. afx_msg void OnRadioRange();
  68. afx_msg void OnButtonScan();
  69. afx_msg void OnButtonStop();
  70. afx_msg void OnButtonSave();
  71. //}}AFX_MSG
  72. DECLARE_MESSAGE_MAP()
  73. };
  74. //{{AFX_INSERT_LOCATION}}
  75. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  76. #endif // !defined(AFX_PORTSCANDLG_H__8BD76815_8905_11D6_8F32_00E04CE76240__INCLUDED_)