// ndis.h
VOID NdisCmDispatchCallConnected(
[in] NDIS_HANDLE NdisVcHandle
);
View the official Windows Driver Kit DDI referenceNo description available.
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.
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.
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.
ProtocolCmIncomingCallComplete
ProtocolCoReceiveNetBufferLists