// ntddndis.h
typedef struct _NDIS_NDK_CONNECTION_ENTRY {
SOCKADDR_INET Local;
SOCKADDR_INET Remote;
BOOLEAN UserModeOwner;
ULONG OwnerPid;
} NDIS_NDK_CONNECTION_ENTRY;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_NDK_CONNECTION_ENTRY structure specifies a connection entry for an active NDK connection on a miniport adapter.
LocalThe local IP address and port.
RemoteThe remote 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.
OwnerPidA process identifier for an NDS user-mode connection.
The NDIS_NDK_CONNECTION_ENTRY structure is used in the NDIS_NDK_CONNECTIONS structure to specify an array of connections.