Sniffer.cpp
上传用户:benyan892
上传日期:2010-01-28
资源大小:158k
文件大小:1k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. // Sniffer.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Sniffer.h"
  5. #include "SnifferDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CSnifferApp
  10. BEGIN_MESSAGE_MAP(CSnifferApp, CWinApp)
  11. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  12. END_MESSAGE_MAP()
  13. // CSnifferApp construction
  14. CSnifferApp::CSnifferApp()
  15. {
  16. // TODO: add construction code here,
  17. // Place all significant initialization in InitInstance
  18. }
  19. // The one and only CSnifferApp object
  20. CSnifferApp theApp;
  21. // CSnifferApp initialization
  22. BOOL CSnifferApp::InitInstance()
  23. {
  24. // InitCommonControls() is required on Windows XP if an application
  25. // manifest specifies use of ComCtl32.dll version 6 or later to enable
  26. // visual styles.  Otherwise, any window creation will fail.
  27. InitCommonControls();
  28. CWinApp::InitInstance();
  29. AfxEnableControlContainer();
  30. CSnifferDlg dlg;
  31. m_pMainWnd = &dlg;
  32. INT_PTR nResponse = dlg.DoModal();
  33. if (nResponse == IDOK)
  34. {
  35. // TODO: Place code here to handle when the dialog is
  36. //  dismissed with OK
  37. }
  38. else if (nResponse == IDCANCEL)
  39. {
  40. // TODO: Place code here to handle when the dialog is
  41. //  dismissed with Cancel
  42. }
  43. // Since the dialog has been closed, return FALSE so that we exit the
  44. //  application, rather than start the application's message pump.
  45. return FALSE;
  46. }