RTM_ENTITY_ID structure (rtmv2.h)
The RTM_ENTITY_ID structure is used to uniquely identify a client to the routing table manager. The protocol identifier and the instance identifier are the values that are used to uniquely identify a client.
Syntax
typedef struct _RTM_ENTITY_ID {
union {
struct {
ULONG EntityProtocolId;
ULONG EntityInstanceId;
};
ULONGLONG EntityId;
};
} RTM_ENTITY_ID, *PRTM_ENTITY_ID;
Members
EntityProtocolId
Specifies a client's protocol identifier (such as RIP or OSPF).
EntityInstanceId
Specifies a client's protocol instance (such as RIPv1 or RIPv2).
EntityId
Specifies a client's identifier, which is a combination of the EntityProtocolId and the EntityInstanceId.
Requirements
Requirement | Value |
---|---|
Minimum supported client | None supported |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | rtmv2.h |