sendudpDlg.h
上传用户:lx6688
上传日期:2016-01-30
资源大小:46k
文件大小:2k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. // sendudpDlg.h : header file
  2. //
  3. #if !defined(AFX_SENDUDPDLG_H__686134C0_8360_4E14_8E94_872C45ABF37D__INCLUDED_)
  4. #define AFX_SENDUDPDLG_H__686134C0_8360_4E14_8E94_872C45ABF37D__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "winsock2.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CSendudpDlg dialog
  11. class CSendudpDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CSendudpDlg(CWnd* pParent = NULL); // standard constructor
  16. CString m_serverIP;
  17. bool  isListen;
  18. // Dialog Data
  19. //{{AFX_DATA(CSendudpDlg)
  20. enum { IDD = IDD_SENDUDP_DIALOG };
  21. CEdit m_rcvTxt;
  22. CEdit m_data;
  23. CIPAddressCtrl m_IP;
  24. UINT m_portdest;
  25. UINT m_portsrc;
  26. BOOL m_hexSend;
  27. //}}AFX_DATA
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CSendudpDlg)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. HICON m_hIcon;
  36. // Generated message map functions
  37. //{{AFX_MSG(CSendudpDlg)
  38. virtual BOOL OnInitDialog();
  39. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  40. afx_msg void OnPaint();
  41. afx_msg HCURSOR OnQueryDragIcon();
  42. afx_msg void OnButton1();
  43. afx_msg void OnButton2();
  44. afx_msg void OnBtnClear();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_SENDUDPDLG_H__686134C0_8360_4E14_8E94_872C45ABF37D__INCLUDED_)