| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
ipinfoid.h
Abstract:
Defines the IDs needed for specifying various types of information
to the router manager. Protocols use their ProtocolId for tagging
information
--*/
#ifndef __ROUTING_IPINFOID_H__
#define __ROUTING_IPINFOID_H__
#if _MSC_VER > 1000
#pragma once
#endif
#include <winapifamily.h>
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#ifdef __cplusplus
extern "C" {
#endif
#define IP_ROUTER_MANAGER_VERSION 1
//////////////////////////////////////////////////////////////////////////////
// //
// These are the ids used for different information types supported by //
// IP Router Manager. These ids live in the same space as the IP Routing //
// Protocol IDs, so any addition to them must be done with care //
// //
//////////////////////////////////////////////////////////////////////////////
#define IP_GENERAL_INFO_BASE 0xffff0000
#define IP_IN_FILTER_INFO IP_GENERAL_INFO_BASE + 1
#define IP_OUT_FILTER_INFO IP_GENERAL_INFO_BASE + 2
#define IP_GLOBAL_INFO IP_GENERAL_INFO_BASE + 3
#define IP_INTERFACE_STATUS_INFO IP_GENERAL_INFO_BASE + 4
#define IP_ROUTE_INFO IP_GENERAL_INFO_BASE + 5
#define IP_PROT_PRIORITY_INFO IP_GENERAL_INFO_BASE + 6
#define IP_ROUTER_DISC_INFO IP_GENERAL_INFO_BASE + 7
// N.B. Unused ID available at IP_GENERAL_INFO_BASE + 8.
#define IP_DEMAND_DIAL_FILTER_INFO IP_GENERAL_INFO_BASE + 9
#define IP_MCAST_HEARBEAT_INFO IP_GENERAL_INFO_BASE + 10
#define IP_MCAST_BOUNDARY_INFO IP_GENERAL_INFO_BASE + 11
#define IP_IPINIP_CFG_INFO IP_GENERAL_INFO_BASE + 12
#define IP_IFFILTER_INFO IP_GENERAL_INFO_BASE + 13
#define IP_MCAST_LIMIT_INFO IP_GENERAL_INFO_BASE + 14
#define IPV6_GLOBAL_INFO IP_GENERAL_INFO_BASE + 15
#define IPV6_ROUTE_INFO IP_GENERAL_INFO_BASE + 16
#define IP_IN_FILTER_INFO_V6 IP_GENERAL_INFO_BASE + 17
#define IP_OUT_FILTER_INFO_V6 IP_GENERAL_INFO_BASE + 18
#define IP_DEMAND_DIAL_FILTER_INFO_V6 IP_GENERAL_INFO_BASE + 19
#define IP_IFFILTER_INFO_V6 IP_GENERAL_INFO_BASE + 20
#define IP_FILTER_ENABLE_INFO IP_GENERAL_INFO_BASE + 21
#define IP_FILTER_ENABLE_INFO_V6 IP_GENERAL_INFO_BASE + 22
#define IP_PROT_PRIORITY_INFO_EX IP_GENERAL_INFO_BASE + 23
//////////////////////////////////////////////////////////////////////////////
// //
// The following IDS are defined in routprot.h and given here for //
// informational purposes only //
// //
// #define IP_OTHER 1 //
// #define IP_LOCAL 2 //
// #define IP_NETMGMT 3 //
// #define IP_ICMP 4 //
// #define IP_EGP 5 //
// #define IP_GGP 6 //
// #define IP_HELLO 7 //
// #define IP_RIP 8 //
// #define IP_IS_IS 9 //
// #define IP_ES_IS 10 //
// #define IP_CISCO 11 //
// #define IP_BBN 12 //
// #define IP_OSPF 13 //
// #define IP_BGP 14 //
// //
// #define IP_BOOTP 9999 //
// #define IPRTRMGR_PID 10000 //
// #define IP_NT_AUTOSTATIC 10002 //
// //
//////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */
#pragma endregion
#endif //__ROUTING_IPINFOID_H__