• 大小: 43KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-01
  • 语言: C/C++
  • 标签: snmp  c++  

资源简介

基于SNMP的网络流量监视系统 c++源代码 包括完整的注释

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “NetDatas.h“
#include “NetDatasDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CNetDatasApp

BEGIN_MESSAGE_MAP(CNetDatasApp CWinApp)
//{{AFX_MSG_MAP(CNetDatasApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CNetDatasApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CNetDatasApp object

CNetDatasApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CNetDatasApp initialization

BOOL CNetDatasApp::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

CNetDatasDlg 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  2008-05-04 21:52  NetDatas2\
     目录           0  2008-05-04 21:52  NetDatas2\Debug\
     文件       21432  2008-04-24 13:58  NetDatas2\NetDatas.aps
     文件        1612  2008-04-24 15:35  NetDatas2\NetDatas.clw
     文件        2091  2007-06-15 11:03  NetDatas2\NetDatas.cpp
     文件        4397  2007-06-15 12:04  NetDatas2\NetDatas.dsp
     文件         539  2007-06-15 11:03  NetDatas2\NetDatas.dsw
     文件        1346  2007-06-15 11:03  NetDatas2\NetDatas.h
     文件      107520  2008-04-24 15:35  NetDatas2\NetDatas.ncb
     文件       55808  2008-04-24 15:35  NetDatas2\NetDatas.opt
     文件        1301  2008-04-24 15:23  NetDatas2\NetDatas.plg
     文件        6344  2007-06-16 16:39  NetDatas2\NetDatas.rc
     文件        4925  2007-06-16 16:28  NetDatas2\NetDatasDlg.cpp
     文件        1657  2007-06-16 15:59  NetDatas2\NetDatasDlg.h
     文件        3615  2007-06-15 11:03  NetDatas2\ReadMe.txt
     目录           0  2008-05-04 21:52  NetDatas2\res\
     文件        1146  2007-06-16 15:58  NetDatas2\Resource.h
     文件        1078  2007-06-15 11:03  NetDatas2\res\NetDatas.ico
     文件         400  2007-06-15 11:03  NetDatas2\res\NetDatas.rc2
     文件        3072  2008-04-24 14:09  NetDatas2\res\Thumbs.db
     文件         210  2007-06-15 11:03  NetDatas2\StdAfx.cpp
     文件        1054  2007-06-15 11:03  NetDatas2\StdAfx.h
     文件        7018  2008-04-24 14:33  NetDatas2\_Cli_NetTraffic.cpp
     文件        1020  2007-06-16 14:49  NetDatas2\_Cli_NetTraffic.h

评论

共有 条评论