NDK_LISTENER_DISPATCH structure (ndkpi.h)

The NDK_LISTENER_DISPATCH structure specifies dispatch function entry points for the NDK listener object.

Syntax

typedef struct _NDK_LISTENER_DISPATCH {
  NDK_FN_CLOSE_OBJECT               NdkCloseListener;
  NDK_FN_QUERY_EXTENSION_INTERFACE  NdkQueryExtension;
  NDK_FN_LISTEN                     NdkListen;
  NDK_FN_GET_LISTENER_LOCAL_ADDRESS NdkGetLocalAddress;
  NDK_FN_CONTROL_CONNECT_EVENTS     NdkControlConnectEvents;
} NDK_LISTENER_DISPATCH;

Members

NdkCloseListener

The entry point for the object's NDK_FN_CLOSE_OBJECT dispatch function.

NdkQueryExtension

The entry point for the object's NDK_FN_QUERY_EXTENSION_INTERFACE dispatch function.

NdkListen

The entry point for the object's NDK_FN_LISTEN dispatch function.

NdkGetLocalAddress

The entry point for the object's NDK_FN_GET_LISTENER_LOCAL_ADDRESS dispatch function.

NdkControlConnectEvents

The entry point for the object's NDK_FN_CONTROL_CONNECT_EVENTS dispatch function.

Remarks

The NDK_LISTENER_DISPATCH structure is used in the NDK_LISTENER structure.

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

NDK_FN_CLOSE_OBJECT

NDK_FN_CONTROL_CONNECT_EVENTS

NDK_FN_GET_LISTENER_LOCAL_ADDRESS

NDK_FN_LISTEN

NDK_FN_QUERY_EXTENSION_INTERFACE

NDK_LISTENER