这个DEMO是通过GetIfTable2函数实现的 不过CSDN上传资源后
半天都显示不出来看来以后还是传在我的网盘上吧 感觉不怎么样。
1:获取MIB2接口 函数的实现体 是不是觉得很简单呢?不过的确也很简单
public static unsafe Win32Native.MIB_IF_TABLE2 GetMIB2Interface()
{
int ptr_Mit2 = Win32Native.NULL;
Win32Native.MIB_IF_TABLE2 s_Mit2 = new Win32Native.MIB_IF_TABLE2(); // create empty mit2.
if (Win32Native.GetIfTable2(ref ptr_Mit2) != Win32Native.NO_ERROR)
return s_Mit2;
if (Win32Native.RtlMoveMemory(ref s_Mit2.NumEntries, ptr_Mit2, 4) && s_Mit2.NumEntries > 0)
{
ptr_Mit2 = ptr_Mit2 + 8; // ptr_Mit2 += 8; offset pointer to MIB_IF_TABLE2::Table
int dwBufferSize = 1352; // sizeof(Win32Native.MIB_IF_ROW2);
s_Mit2.Table = new Win32Native.MIB_IF_ROW2[s_Mit2.NumEntries];