Edit

WINHTTP_CONNECTION_IFINDEX_LIST structure

Contains a list of connection-to-interface-index mappings used to update the WinHTTP routing table.

Syntax

typedef struct _WINHTTP_CONNECTION_IFINDEX_LIST {
    WINHTTP_CONNECTION_IFINDEX_ENTRY *pConnectionIfIndexEntries;
    DWORD                             nEntries;
} WINHTTP_CONNECTION_IFINDEX_LIST;

Members

pConnectionIfIndexEntries

Pointer to an array of WINHTTP_CONNECTION_IFINDEX_ENTRY structures, each mapping a connection name to an interface index.

nEntries

The number of entries in the pConnectionIfIndexEntries array. Set to 0 to clear all connection-interface mappings.

Remarks

Note

This type is not currently included in an SDK header file. You must declare it yourself in your code.

Requirements

Requirement Value
Header N/A

See also