/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS TDI test driver * FILE: include/tditest.h * PURPOSE: Testing TDI drivers */ #ifndef __TDITEST_H #define __TDITEST_H #ifdef _MSC_VER #include #include #include #else #include #include #include #endif #include "debug.h" /* Name of UDP device */ #define UDP_DEVICE_NAME L"\\Device\\Udp" #ifdef i386 /* DWORD network to host byte order conversion for i386 */ #define DN2H(dw) \ ((((dw) & 0xFF000000L) >> 24) | \ (((dw) & 0x00FF0000L) >> 8) | \ (((dw) & 0x0000FF00L) << 8) | \ (((dw) & 0x000000FFL) << 24)) /* DWORD host to network byte order conversion for i386 */ #define DH2N(dw) \ ((((dw) & 0xFF000000L) >> 24) | \ (((dw) & 0x00FF0000L) >> 8) | \ (((dw) & 0x0000FF00L) << 8) | \ (((dw) & 0x000000FFL) << 24)) /* WORD network to host order conversion for i386 */ #define WN2H(w) \ ((((w) & 0xFF00) >> 8) | \ (((w) & 0x00FF) << 8)) /* WORD host to network byte order conversion for i386 */ #define WH2N(w) \ ((((w) & 0xFF00) >> 8) | \ (((w) & 0x00FF) << 8)) #else /* i386 */ /* DWORD network to host byte order conversion for other architectures */ #define DN2H(dw) \ (dw) /* DWORD host to network byte order conversion for other architectures */ #define DH2N(dw) \ (dw) /* WORD network to host order conversion for other architectures */ #define WN2H(w) \ (w) /* WORD host to network byte order conversion for other architectures */ #define WH2N(w) \ (w) #endif /* i386 */ typedef struct IPSNMP_INFO { ULONG Forwarding; ULONG DefaultTTL; ULONG InReceives; ULONG InHdrErrors; ULONG InAddrErrors; ULONG ForwDatagrams; ULONG InUnknownProtos; ULONG InDiscards; ULONG InDelivers; ULONG OutRequests; ULONG RoutingDiscards; ULONG OutDiscards; ULONG OutNoRoutes; ULONG ReasmTimeout; ULONG ReasmReqds; ULONG ReasmOks; ULONG ReasmFails; ULONG FragOks; ULONG FragFails; ULONG FragCreates; ULONG NumIf; ULONG NumAddr; ULONG NumRoutes; } IPSNMP_INFO, *PIPSNMP_INFO; typedef struct IPADDR_ENTRY { ULONG Addr; ULONG Index; ULONG Mask; ULONG BcastAddr; ULONG ReasmSize; USHORT Context; USHORT Pad; } IPADDR_ENTRY, *PIPADDR_ENTRY; #define TL_INSTANCE 0 #define IP_MIB_STATS_ID 0x1 #define IP_MIB_ADDRTABLE_ENTRY_ID 0x102 /* IOCTL codes */ #define IOCTL_TCP_QUERY_INFORMATION_EX \ CTL_CODE(FILE_DEVICE_NETWORK, 0, METHOD_NEITHER, FILE_ANY_ACCESS) #define IOCTL_TCP_SET_INFORMATION_EX \ CTL_CODE(FILE_DEVICE_NETWORK, 1, METHOD_BUFFERED, FILE_WRITE_ACCESS) #define TEST_PORT 2000 #endif /*__TDITEST_H */ /* EOF */