NDK_CONNECTOR_DISPATCH structure (ndkpi.h)
The NDK_CONNECTOR_DISPATCH structure specifies dispatch function entry points for the NDK connector object.
Syntax
typedef struct _NDK_CONNECTOR_DISPATCH {
NDK_FN_CLOSE_OBJECT NdkCloseConnector;
NDK_FN_QUERY_EXTENSION_INTERFACE NdkQueryExtension;
NDK_FN_CONNECT NdkConnect;
NDK_FN_CONNECT_WITH_SHARED_ENDPOINT NdkConnectWithSharedEndpoint;
NDK_FN_COMPLETE_CONNECT NdkCompleteConnect;
NDK_FN_ACCEPT NdkAccept;
NDK_FN_REJECT NdkReject;
NDK_FN_GET_CONNECTION_DATA NdkGetConnectionData;
NDK_FN_GET_LOCAL_ADDRESS NdkGetLocalAddress;
NDK_FN_GET_PEER_ADDRESS NdkGetPeerAddress;
NDK_FN_DISCONNECT NdkDisconnect;
NDK_FN_COMPLETE_CONNECT_EX NdkCompleteConnectEx;
NDK_FN_ACCEPT_EX NdkAcceptEx;
} NDK_CONNECTOR_DISPATCH;
Members
NdkCloseConnector
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.
NdkConnect
The entry point for the object's NDK_FN_CONNECT dispatch function.
NdkConnectWithSharedEndpoint
The entry point for the object's NDK_FN_CONNECT_WITH_SHARED_ENDPOINT dispatch function.
NdkCompleteConnect
The entry point for the object's NDK_FN_COMPLETE_CONNECT dispatch function.
NdkAccept
The entry point for the object's NDK_FN_ACCEPT dispatch function.
NdkReject
The entry point for the object's NDK_FN_REJECT dispatch function.
NdkGetConnectionData
The entry point for the object's NDK_FN_GET_CONNECTION_DATA dispatch function.
NdkGetLocalAddress
The entry point for the object's NDK_FN_GET_LOCAL_ADDRESS dispatch function.
NdkGetPeerAddress
The entry point for the object's NDK_FN_GET_PEER_ADDRESS dispatch function.
NdkDisconnect
The entry point for the object's NDK_FN_DISCONNECT dispatch function.
NdkCompleteConnectEx
The entry point for the object's NDK_FN_COMPLETE_CONNECT_EX dispatch function.
NdkAcceptEx
The entry point for the object's NDK_FN_ACCEPT_EX dispatch function.
Remarks
The NDK_CONNECTOR_DISPATCH structure is used in the NDK_CONNECTOR structure.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Supported in NDIS 6.30 and later. |
Minimum supported server | Windows Server 2012 |
Header | ndkpi.h (include Ndkpi.h) |
See also
NDK_FN_CONNECT_WITH_SHARED_ENDPOINT