资源简介

这是一款网络监听工具,有效监听网络数据的收发,实时掌握网络情况

资源截图

代码片段和文件信息

// SniffApp.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “SniffApp.h“
#include “SniffAppDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CSniffAppApp

BEGIN_MESSAGE_MAP(CSniffAppApp CWinApp)
//{{AFX_MSG_MAP(CSniffAppApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSniffAppApp construction

CSniffAppApp::CSniffAppApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CSniffAppApp object

CSniffAppApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CSniffAppApp initialization

BOOL CSniffAppApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
//初始化套接字
WSADATA data;
AfxSocketInit(&data);
//WSAStartup(2&data);

CSniffAppDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}


// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-07-01 15:11  SniffApp\
     目录           0  2014-07-01 14:53  SniffApp\Debug\
     文件      114768  2014-07-01 14:53  SniffApp\Debug\SniffApp.exe
     文件      231376  2014-07-01 14:53  SniffApp\Debug\SniffApp.ilk
     文件       16677  2014-07-01 01:49  SniffApp\Debug\SniffApp.obj
     文件     6883476  2014-07-01 01:49  SniffApp\Debug\SniffApp.pch
     文件      402432  2014-07-01 14:53  SniffApp\Debug\SniffApp.pdb
     文件        4872  2014-07-01 02:22  SniffApp\Debug\SniffApp.res
     文件       41300  2014-07-01 01:49  SniffApp\Debug\SniffApp.sbr
     文件       39425  2014-07-01 14:53  SniffApp\Debug\SniffAppDlg.obj
     文件       45479  2014-07-01 14:53  SniffApp\Debug\SniffAppDlg.sbr
     文件      105765  2014-07-01 01:49  SniffApp\Debug\StdAfx.obj
     文件     1375004  2014-07-01 01:49  SniffApp\Debug\StdAfx.sbr
     文件      214016  2014-07-01 14:53  SniffApp\Debug\vc60.idb
     文件      372736  2014-07-01 14:53  SniffApp\Debug\vc60.pdb
     文件        3615  2007-05-08 08:52  SniffApp\ReadMe.txt
     文件       38332  2014-07-01 02:22  SniffApp\SniffApp.aps
     文件        1156  2014-07-01 15:11  SniffApp\SniffApp.clw
     文件        2175  2007-05-08 08:52  SniffApp\SniffApp.cpp
     文件        4279  2007-05-08 08:52  SniffApp\SniffApp.dsp
     文件         541  2007-05-08 08:52  SniffApp\SniffApp.dsw
     文件        1427  2007-05-08 08:52  SniffApp\SniffApp.h
     文件       58368  2014-07-01 15:11  SniffApp\SniffApp.ncb
     文件      645120  2014-07-01 15:11  SniffApp\SniffApp.opt
     文件         995  2014-07-01 14:53  SniffApp\SniffApp.plg
     文件        5450  2014-07-01 02:22  SniffApp\SniffApp.rc
     文件        9214  2014-07-01 14:53  SniffApp\SniffAppDlg.cpp
     文件        3632  2007-05-08 08:52  SniffApp\SniffAppDlg.h
     文件         210  2007-05-08 08:52  SniffApp\StdAfx.cpp
     文件        1054  2007-05-08 08:52  SniffApp\StdAfx.h
     目录           0  2014-01-09 14:36  SniffApp\res\
............此处省略5个文件信息

评论

共有 条评论