NDK_QP structure (ndkpi.h)

The NDK_QP structure specifies the attributes of an NDK queue pair (QP) object.

Syntax

typedef struct _NDK_QP {
  NDK_OBJECT_HEADER     Header;
  const NDK_QP_DISPATCH *Dispatch;
} NDK_QP;

Members

Header

The NDK_OBJECT_HEADER structure for the NDK_QP structure. Set the ObjectType member of the structure that Header specifies to NdkObjectTypeQp.

Dispatch

A pointer to an NDK_QP_DISPATCH structure that defines dispatch functions for the NDK QP object.

Remarks

An NDK provider must set the Dispatch member to point to its NDK_QP_DISPATCH table before returning the created QP object. Also, the NDK provider must not use the Dispatch member after setting it because the NDK consumer can change the Dispatch member to some other value.

Requirements

Requirement Value
Minimum supported client None supported,Supported in NDIS 6.30 and later.
Minimum supported server Windows ServerĀ 2012
Header ndkpi.h (include Ndkpi.h)

See also

NDKPI Object Lifetime Requirements

NDKPI Work Request Posting Requirements

NDK_FN_CLOSE_OBJECT

NDK_FN_CREATE_COMPLETION

NDK_FN_CREATE_QP

NDK_FN_CREATE_QP_WITH_SRQ

NDK_OBJECT_HEADER

NDK_QP_DISPATCH