NdisCmDispatchCallConnected - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

VOID NdisCmDispatchCallConnected(
  [in] NDIS_HANDLE NdisVcHandle
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndiscmdispatchcallconnected)

NdisCmDispatchCallConnected function

Description

NdisCmDispatchCallConnected notifies NDIS and the client that data transfers can begin on a VC that the call manager created for an incoming call initiated on a remote node.

Parameters

NdisVcHandle [in]

Specifies the handle to the VC that represents the connection, which was created with NdisCoCreateVc when the call manager's ProtocolCoReceiveNetBufferLists function was notified of the incoming call.

Remarks

A stand-alone CM's ProtocolCmIncomingCallComplete function calls NdisCmDispatchCallConnected to complete the final handshake for an incoming call from a remote node, which the client has already accepted.

A call to NdisCmDispatchCallConnected causes NDIS to call the client's ProtocolClCallConnected function.

Only stand-alone call managers, which register themselves with NDIS as protocol drivers, can call NdisCmDispatchCallConnected. Connection-oriented miniport drivers that provide integrated call-management support call NdisMCmDispatchCallConnected instead.

See also

NdisCmDispatchIncomingCall

NdisMCmDispatchCallConnected

ProtocolClCallConnected

ProtocolCmIncomingCallComplete

ProtocolCoReceiveNetBufferLists