[TCPIP_DRVTEST]

- Add quite a lot of tests for IOCTL_TCP_QUERY_INFORMATION_EX
This IOCTL is quite important because that's how iphlpapi gets data from it.
Also, this can be used as a viewer for quite a lot SNMP info as described here: http://www.oidview.com/mibs/0/RFC1213-MIB.html

svn path=/trunk/; revision=66070
This commit is contained in:
Jérôme Gardou 2015-01-21 15:55:00 +00:00
parent acf84c8854
commit 1f7304870c
3 changed files with 583 additions and 0 deletions

View file

@ -4,10 +4,12 @@
#include <apitest.h>
extern void func_InterfaceInfo(void);
extern void func_tcp_info(void);
const struct test winetest_testlist[] =
{
{ "InterfaceInfo", func_InterfaceInfo },
{ "tcp_info", func_tcp_info },
{ 0, 0 }
};