GetBestRoute2 function (netioapi.h)
The GetBestRoute2 function retrieves the IP route entry on the local computer for the best route to the specified destination IP address.
Syntax
IPHLPAPI_DLL_LINKAGE _NETIOAPI_SUCCESS_ NETIOAPI_API GetBestRoute2(
[in, optional] NET_LUID *InterfaceLuid,
[in] NET_IFINDEX InterfaceIndex,
[in] const SOCKADDR_INET *SourceAddress,
[in] const SOCKADDR_INET *DestinationAddress,
[in] ULONG AddressSortOptions,
[out] PMIB_IPFORWARD_ROW2 BestRoute,
[out] SOCKADDR_INET *BestSourceAddress
);
Parameters
[in, optional] InterfaceLuid
The locally unique identifier (LUID) to specify the network interface associated with an IP route entry.
[in] InterfaceIndex
The local index value to specify the network interface associated with an IP route entry. This index value may change when a network adapter is disabled and then enabled, or under other circumstances, and should not be considered persistent.
[in] SourceAddress
The source IP address. This parameter may be omitted and passed as a NULL pointer.
[in] DestinationAddress
The destination IP address.
[in] AddressSortOptions
A set of options that affect how IP addresses are sorted. This parameter is not currently used.
[out] BestRoute
A pointer to the MIB_IPFORWARD_ROW2 for the best route from the source IP address to the destination IP address.
[out] BestSourceAddress
A pointer to the best source IP address.
Return value
If the function succeeds, the return value is NO_ERROR.
If the function fails, the return value is one of the following error codes.
Return code | Description |
---|---|
|
An invalid parameter was passed to the function. This error is returned if a NULL pointer is passed in the DestinationAddress, BestSourceAddress, or the BestRoute parameter. This error is also returned if the DestinationAddress parameter does not specify an IPv4 or IPv6 address and family. |
|
The specified interface could not be found. This error is returned if the network interface specified by the InterfaceLuid or InterfaceIndex parameter could not be found. |
|
The request is not supported. This error is returned if no IPv4 stack is on the local computer and an IPv4 address and family was specified in the DestinationAddress parameter. This error is also returned if no IPv6 stack is on the local computer and an IPv6 address and family was specified in the DestinationAddress parameter. |
|
Use FormatMessage to obtain the message string for the returned error. |
Remarks
The GetBestRoute2 function is defined on Windows Vista and later.
The GetBestRoute2 function is used to retrieve a MIB_IPFORWARD_ROW2 structure entry for the best route from a source IP address to a destination IP address.
On input, the DestinationAddress parameter must be initialized to a valid IPv4 or IPv6 address and family. On input, the SourceAddress parameter may be initialized to the preferred IPv4 or IPv6 address and family. In addition, at least one of the following parameters must be initialized: the InterfaceLuid or InterfaceIndex.
The parameters are used in the order listed above. So if the InterfaceLuid is specified, then this member is used to determine the interface. If no value was set for the InterfaceLuid member (the values of this member was set to zero), then the InterfaceIndex member is next used to determine the interface.
On output when the call is successful, GetBestRoute2 retrieves and MIB_IPFORWARD_ROW2 structure for the best route from the source IP address the destination IP address.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps | UWP apps] |
Minimum supported server | Windows Server 2008 [desktop apps | UWP apps] |
Target Platform | Windows |
Header | netioapi.h (include Iphlpapi.h) |
Library | Iphlpapi.lib |
DLL | Iphlpapi.dll |