// ndis.h
void NdisMCmDispatchCallConnected(
_H_
);
View the official Windows Driver Kit DDI referenceNo description available.
NdisMCmDispatchCallConnected notifies NDIS and the client that data transfers can begin on a VC that the MCM driver created for an incoming call initiated on a remote node.
_H_Specifies the handle to the VC that represents the connection, created with NdisMCmCreateVc when the MCM driver set up the VC for the incoming call.
An MCM driver's ProtocolCmIncomingCallComplete function calls NdisMCmDispatchCallConnected to complete the final handshake for an incoming call from a remote node, which the local client has already accepted.
A call to NdisMCmDispatchCallConnected causes NDIS to call the client's ProtocolClCallConnected function.
Only connection-oriented miniport drivers that provide integrated call-management support can call NdisMCmDispatchCallConnected. Stand-alone call managers, which register themselves with NDIS as protocol drivers, call NdisCmDispatchCallConnected instead.
ProtocolCmIncomingCallComplete