资源简介
在实现TCP/IP协议的网络环境下,一个ip包走到哪里,要怎么走是靠路由表定义,但是,当ip包到达该网络后,哪台机器响应这个ip包却是靠该ip包中所包含的硬件mac地址来识别。也就是说,只有机器的硬件mac地址和该ip包中的硬件mac地址相同的机器才会应答这个ip包,因为在网络中,每一台主机都会有发送ip包的时候,所以,在每台主机的内存中,都有一个 arp--> 硬件mac 的转换表。通常是动态的转换表(该arp表可以手工添加静态条目)。也就是说,该对应表会被主机在一定的时间间隔后刷新。这个时间间隔就是ARP高速缓存的超时时间。
通常主机在发送一个ip包之前,它要到该转换表中寻找和ip包对应的硬件mac地址,如果没有找到,该主机就发送一个ARP广播包,于是,主机刷新自己的ARP缓存。然后发出该ip包。
代码片段和文件信息
// Arptest.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Arptest.h“
#include “ArptestDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CArptestApp
BEGIN_MESSAGE_MAP(CArptestApp CWinApp)
//{{AFX_MSG_MAP(CArptestApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CArptestApp construction
CArptestApp::CArptestApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CArptestApp object
CArptestApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CArptestApp initialization
BOOL CArptestApp::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
CArptestDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 338944 2010-06-27 16:29 计算机网络课设代码\08.ppt
文件 37828 2010-06-27 09:40 计算机网络课设代码\Arptest\Arptest.aps
文件 2417 2010-06-27 09:40 计算机网络课设代码\Arptest\Arptest.clw
文件 2077 2008-06-22 21:06 计算机网络课设代码\Arptest\Arptest.cpp
文件 4453 2010-06-27 09:15 计算机网络课设代码\Arptest\Arptest.dsp
文件 539 2008-06-22 21:06 计算机网络课设代码\Arptest\Arptest.dsw
文件 1335 2008-06-22 21:06 计算机网络课设代码\Arptest\Arptest.h
文件 254976 2010-06-27 09:40 计算机网络课设代码\Arptest\Arptest.ncb
文件 51712 2010-06-27 09:40 计算机网络课设代码\Arptest\Arptest.opt
文件 1474 2010-06-27 09:40 计算机网络课设代码\Arptest\Arptest.plg
文件 7240 2010-06-27 09:40 计算机网络课设代码\Arptest\Arptest.rc
文件 10775 2010-06-27 09:08 计算机网络课设代码\Arptest\ArptestDlg.cpp
文件 1740 2009-06-18 14:53 计算机网络课设代码\Arptest\ArptestDlg.h
文件 2138157 2010-06-27 09:40 计算机网络课设代码\Arptest\Debug\Arptest.exe
文件 12978 2010-06-27 09:09 计算机网络课设代码\Arptest\Debug\Arptest.obj
文件 3589120 2010-06-27 09:40 计算机网络课设代码\Arptest\Debug\Arptest.pdb
文件 9752 2010-06-27 09:40 计算机网络课设代码\Arptest\Debug\Arptest.res
文件 0 2010-06-27 09:09 计算机网络课设代码\Arptest\Debug\Arptest.sbr
文件 43613 2010-06-27 09:40 计算机网络课设代码\Arptest\Debug\ArptestDlg.obj
文件 0 2010-06-27 09:40 计算机网络课设代码\Arptest\Debug\ArptestDlg.sbr
文件 13769 2010-06-27 09:40 计算机网络课设代码\Arptest\Debug\Sender.obj
文件 0 2010-06-27 09:40 计算机网络课设代码\Arptest\Debug\Sender.sbr
文件 106744 2010-06-27 09:09 计算机网络课设代码\Arptest\Debug\StdAfx.obj
文件 1374446 2010-06-27 09:09 计算机网络课设代码\Arptest\Debug\StdAfx.sbr
文件 17646 2010-06-27 09:12 计算机网络课设代码\Arptest\Debug\SysInfo.obj
文件 0 2010-06-27 09:12 计算机网络课设代码\Arptest\Debug\SysInfo.sbr
文件 389120 2010-06-27 09:40 计算机网络课设代码\Arptest\Debug\vc60.pdb
文件 3963 2002-04-10 13:45 计算机网络课设代码\Arptest\Devioctl.h
文件 9512 2002-01-30 17:32 计算机网络课设代码\Arptest\IPEXPORT.H
文件 15896 2009-06-18 22:11 计算机网络课设代码\Arptest\Iphlpapi.h
............此处省略363个文件信息
- 上一篇:最简单的基于DirectShow的
- 下一篇:MIT线性代数导论笔记
评论
共有 条评论