1 /** 2 * This file has no copyright assigned and is placed in the Public Domain. 3 * This file is part of the mingw-w64 runtime package. 4 * No warranty is given; refer to the file DISCLAIMER.PD within this package. 5 */ 6 #ifndef __ROUTING_IPINFOID_H__ 7 #define __ROUTING_IPINFOID_H__ 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 #define IP_ROUTER_MANAGER_VERSION 1 14 15 #define IP_GENERAL_INFO_BASE 0xffff0000 16 17 #define IP_IN_FILTER_INFO IP_GENERAL_INFO_BASE + 1 18 #define IP_OUT_FILTER_INFO IP_GENERAL_INFO_BASE + 2 19 #define IP_GLOBAL_INFO IP_GENERAL_INFO_BASE + 3 20 #define IP_INTERFACE_STATUS_INFO IP_GENERAL_INFO_BASE + 4 21 #define IP_ROUTE_INFO IP_GENERAL_INFO_BASE + 5 22 #define IP_PROT_PRIORITY_INFO IP_GENERAL_INFO_BASE + 6 23 #define IP_ROUTER_DISC_INFO IP_GENERAL_INFO_BASE + 7 24 25 #define IP_DEMAND_DIAL_FILTER_INFO IP_GENERAL_INFO_BASE + 9 26 #define IP_MCAST_HEARBEAT_INFO IP_GENERAL_INFO_BASE + 10 27 #define IP_MCAST_BOUNDARY_INFO IP_GENERAL_INFO_BASE + 11 28 #define IP_IPINIP_CFG_INFO IP_GENERAL_INFO_BASE + 12 29 #define IP_IFFILTER_INFO IP_GENERAL_INFO_BASE + 13 30 #define IP_MCAST_LIMIT_INFO IP_GENERAL_INFO_BASE + 14 31 32 #ifdef __cplusplus 33 } 34 #endif 35 #endif 36