⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 merge-notes.txt

📁 ReactOS是一些高手根据Windows XP的内核编写出的类XP。内核实现机理和API函数调用几乎相同。甚至可以兼容XP的程序。喜欢研究系统内核的人可以看一看。
💻 TXT
字号:
GetAdaptersInfo --
Wine uses: Software\\Wine\\Wine\\Config\\Network
     -- Wins support is todo so this part isn't so important.
     -- Overall, workable
Wine uses ansi functions

-- Done --
GetNetworkParams --
     -- Make workable interface for _res
        -- Wine based on real _res
	-- Reactos based on my enumerator funcs

-- Done -- Prints route info on windows
ROUTE PRINT:

iphlpapi_main.c:137 - ppIfTable 0104bd80, bOrder 1, heap 0xa0000000, flags 0x00000001
 - AllocateAndGetIfTableFromStack
iphlpapi_main.c:898 - pIfTable 0104bd00, pdwSize 0104bd00, bOrder 1
 - GetIfTable
(tcpip/main.c:168)(TiCreateFileObject) No EA information in IRP.
 - We need a special case of no EA information to handle these ioctls in
   tcpip.sys
iphlpapi_main.c:939 - returning 122
iphlpapi_main.c:898 - pIfTable 0104bd00, pdwSize 0104bd00, bOrder 1
 - GetIfTable again
(tcpip/main.c:168)(TiCreateFileObject) No EA information in IRP.
(tcpip/main.c:168)(TiCreateFileObject) No EA information in IRP.
getInterfaceIndexTable: numInterfaces: 0
iphlpapi_main.c:939 - returning 0
iphlpapi_main.c:149 - returning 0
iphlpapi_main.c:213 - ppIpForwardTable 0104bd78, bOrder 1, heap 0xa0000000, flags 0x00000001
 - AllocateAndGetIpForwardTableFromStack
iphlpapi_main.c:1151 - pIpForwardTable 00000000, pdwSize 0104bd00, bOrder 1
 - GetIpForwardTable
iphlpapi_main.c:1214 - returning 122
iphlpapi_main.c:1151 - pIpForwardTable a0001d68, pdwSize 0104bd00, bOrder 1
 - GetIpForwardTable again
iphlpapi_main.c:1214 - returning 122
iphlpapi_main.c:225 - returning 122

Overall architecture of the ifenum and ipstats functions.

Right now, I rely heavily on a couple of enumeration functions.
What I need to do is consolidate them and reduce traffic on the ioctl.

There are two things I need to do:

1. Lookup an interface by index (or name)
2. Get the IP info

I have too many functions that loop over various things.

What I need are the get** functions from ipstats (which I think are ok)
And then to change the detritus in ifenum to be all based on
getInterfaceIndexTable and getInterfaceMibByIndex, getInterfaceMibByName

Implementing name functions:

Ok here's what i can synthesize from unclegarlic and vizzini:

the IP_ADAPTER_INFO struct should contain the guid part of the registry key
name that holds the adapter

the snmp-style info functions should return a nice name, which is also from
the registry.

In no case is the adapter OID for name used.  According to vizzini, this
OID is never used and probably almost never implemented.

This is different from the wine case because there are two different names
returned from the underlying layer.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -