reactos/rostests/drivers/tcpip/testlist.c
Jérôme Gardou 1f7304870c [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
2015-01-21 15:55:00 +00:00

17 lines
277 B
C

#define __ROS_LONG64__
#define STANDALONE
#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 }
};