NDIS_NDK_CONNECTION_ENTRY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddndis-_ndis_ndk_connection_entry)

_NDIS_NDK_CONNECTION_ENTRY structure

Description

The NDIS_NDK_CONNECTION_ENTRY structure specifies a connection entry for an active NDK connection on a miniport adapter.

Members

Local

The local IP address and port.

Remote

The remote IP address and port.

UserModeOwner

A BOOLEAN value that is TRUE if the connection is an NDS user-mode connection, or FALSE if it is an NDK kernel-mode connection.

OwnerPid

A process identifier for an NDS user-mode connection.

Remarks

The NDIS_NDK_CONNECTION_ENTRY structure is used in the NDIS_NDK_CONNECTIONS structure to specify an array of connections.

See also

NDIS_NDK_CONNECTIONS