IPAddressDlg.cpp
上传用户:zhouwei825
上传日期:2015-04-29
资源大小:14k
文件大小:6k
源码类别:

弱点检测代码

开发平台:

Visual C++

  1. // IPAddressDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "IPAddress.h"
  5. #include "IPAddressDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. #include <winsock2.h>
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CIPAddressDlg dialog
  51. CIPAddressDlg::CIPAddressDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CIPAddressDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CIPAddressDlg)
  55. m_sHostName = _T("");
  56. m_sIPAddress = _T("");
  57. //}}AFX_DATA_INIT
  58. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  59. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  60. }
  61. void CIPAddressDlg::DoDataExchange(CDataExchange* pDX)
  62. {
  63. CDialog::DoDataExchange(pDX);
  64. //{{AFX_DATA_MAP(CIPAddressDlg)
  65. DDX_Text(pDX, IDC_HOSTNAME, m_sHostName);
  66. DDX_Text(pDX, IDC_IPADDRESS, m_sIPAddress);
  67. //}}AFX_DATA_MAP
  68. }
  69. BEGIN_MESSAGE_MAP(CIPAddressDlg, CDialog)
  70. //{{AFX_MSG_MAP(CIPAddressDlg)
  71. ON_WM_SYSCOMMAND()
  72. ON_WM_PAINT()
  73. ON_WM_QUERYDRAGICON()
  74. //}}AFX_MSG_MAP
  75. END_MESSAGE_MAP()
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CIPAddressDlg message handlers
  78. BOOL CIPAddressDlg::OnInitDialog()
  79. {
  80. CDialog::OnInitDialog();
  81. // Add "About..." menu item to system menu.
  82. // IDM_ABOUTBOX must be in the system command range.
  83. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  84. ASSERT(IDM_ABOUTBOX < 0xF000);
  85. CMenu* pSysMenu = GetSystemMenu(FALSE);
  86. if (pSysMenu != NULL)
  87. {
  88. CString strAboutMenu;
  89. strAboutMenu.LoadString(IDS_ABOUTBOX);
  90. if (!strAboutMenu.IsEmpty())
  91. {
  92. pSysMenu->AppendMenu(MF_SEPARATOR);
  93. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  94. }
  95. }
  96. // Set the icon for this dialog.  The framework does this automatically
  97. //  when the application's main window is not a dialog
  98. SetIcon(m_hIcon, TRUE); // Set big icon
  99. SetIcon(m_hIcon, FALSE); // Set small icon
  100. // TODO: Add extra initialization here
  101. int nRetCode;
  102. nRetCode = StartUp();
  103. TRACE1("StartUp RetCode: %dn", nRetCode);
  104. nRetCode = GetLocalHostName(m_sHostName);
  105. TRACE1("GetLocalHostName RetCode: %dn", nRetCode);
  106. nRetCode = GetIPAddress(m_sHostName, m_sIPAddress);
  107. TRACE1("GetIPAddress RetCode: %dn", nRetCode);
  108. nRetCode = CleanUp();
  109. TRACE1("CleanUp RetCode: %dn", nRetCode);
  110. UpdateData(FALSE);
  111. return TRUE;  // return TRUE  unless you set the focus to a control
  112. }
  113. void CIPAddressDlg::OnSysCommand(UINT nID, LPARAM lParam)
  114. {
  115. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  116. {
  117. CAboutDlg dlgAbout;
  118. dlgAbout.DoModal();
  119. }
  120. else
  121. {
  122. CDialog::OnSysCommand(nID, lParam);
  123. }
  124. }
  125. // If you add a minimize button to your dialog, you will need the code below
  126. //  to draw the icon.  For MFC applications using the document/view model,
  127. //  this is automatically done for you by the framework.
  128. void CIPAddressDlg::OnPaint() 
  129. {
  130. if (IsIconic())
  131. {
  132. CPaintDC dc(this); // device context for painting
  133. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  134. // Center icon in client rectangle
  135. int cxIcon = GetSystemMetrics(SM_CXICON);
  136. int cyIcon = GetSystemMetrics(SM_CYICON);
  137. CRect rect;
  138. GetClientRect(&rect);
  139. int x = (rect.Width() - cxIcon + 1) / 2;
  140. int y = (rect.Height() - cyIcon + 1) / 2;
  141. // Draw the icon
  142. dc.DrawIcon(x, y, m_hIcon);
  143. }
  144. else
  145. {
  146. CDialog::OnPaint();
  147. }
  148. }
  149. // The system calls this to obtain the cursor to display while the user drags
  150. //  the minimized window.
  151. HCURSOR CIPAddressDlg::OnQueryDragIcon()
  152. {
  153. return (HCURSOR) m_hIcon;
  154. }
  155. /////////////////////////////////////////////////////////////////////////////
  156. // CIPAddressDlg protected methods
  157. int CIPAddressDlg::StartUp()
  158. {
  159. WORD    wVersionRequested;
  160. WSADATA wsaData;
  161. int     err; 
  162. wVersionRequested = MAKEWORD( 2, 0 ); 
  163. err = WSAStartup( wVersionRequested, &wsaData );
  164. if ( err != 0 ) {
  165. // Couldn't find a usable WinSock DLL.                                  */    
  166. return err;
  167. // Confirm that the WinSock DLL supports 2.0.
  168. // Note that if the DLL supports versions greater
  169. // than 2.0 in addition to 2.0, it will still return
  170. // 2.0 in wVersion since that is the version we
  171. // requested. 
  172. if ( LOBYTE( wsaData.wVersion ) != 2 ||
  173.         HIBYTE( wsaData.wVersion ) != 0 ) {
  174. // Couldn't find a usable WinSock DLL.
  175. WSACleanup( );
  176. return WSAVERNOTSUPPORTED; 
  177. // The WinSock DLL is acceptable
  178. return 0;
  179. }
  180. int CIPAddressDlg::CleanUp()
  181. {
  182. int nRetCode;
  183. nRetCode = WSACleanup();
  184. if (nRetCode != 0) {
  185. // An error occured. 
  186. return WSAGetLastError();
  187. }
  188. return 0; 
  189. }
  190. int CIPAddressDlg::GetLocalHostName(CString& sHostName)
  191. {
  192. char szHostName[256];
  193. int  nRetCode;
  194. nRetCode = gethostname(szHostName, sizeof(szHostName));
  195. if (nRetCode != 0) {
  196. // An error has occurred
  197. sHostName = _T("Not available");;
  198. return WSAGetLastError();
  199. }
  200. sHostName = szHostName;
  201. return 0;
  202. }
  203. int CIPAddressDlg::GetIPAddress(const CString& sHostName, CString& sIPAddress)
  204. {
  205. struct hostent FAR *lpHostEnt = gethostbyname (sHostName);
  206. if (lpHostEnt == NULL) {
  207. // An error occurred. 
  208. sIPAddress = _T("");
  209. return WSAGetLastError();
  210. }
  211. LPSTR lpAddr = lpHostEnt->h_addr_list[0];
  212. if (lpAddr) {
  213. struct in_addr  inAddr;
  214. memmove (&inAddr, lpAddr, 4);
  215. sIPAddress = inet_ntoa (inAddr);
  216. if (sIPAddress.IsEmpty())
  217. sIPAddress = _T("Not available");
  218. }
  219. return 0;
  220. }