// ntddndis.h
typedef struct _NDIS_NDK_LOCAL_ENDPOINT_ENTRY {
SOCKADDR_INET Local;
BOOLEAN UserModeOwner;
BOOLEAN Listener;
ULONG OwnerPid;
} NDIS_NDK_LOCAL_ENDPOINT_ENTRY;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_NDK_LOCAL_ENDPOINT_ENTRY structure specifies an ND local endpoint entry for an ND local endpoint on a miniport adapter.
LocalThe local IP address and port.
UserModeOwnerA BOOLEAN value that is TRUE if the connection is an NDS user-mode connection, or FALSE if it is an NDK kernel-mode connection.
ListenerA BOOLEAN value that is TRUE if the connection is a listener or FALSE if it is a shared endpoint.
OwnerPidA process identifier for an NDS user-mode connection.
The NDIS_NDK_LOCAL_ENDPOINT_ENTRY structure is used in the NDIS_NDK_LOCAL_ENDPOINTS structure to specify an array of local endpoints.