NdisCmDispatchCallConnected (NDIS 5.1) function
Note NDIS 5. x has been deprecated and is superseded by NDIS 6. x. For new NDIS driver development, see Network Drivers Starting with Windows Vista. For information about porting NDIS 5. x drivers to NDIS 6. x, see Porting NDIS 5.x Drivers to NDIS 6.0.
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.
Syntax
VOID NdisCmDispatchCallConnected(
_In_ NDIS_HANDLE NdisVcHandle
);
Parameters
- NdisVcHandle [in]
Specifies the handle to the VC that represents the connection, which was created with NdisCoCreateVc when the call manager's ProtocolCoReceivePacket function was notified of the incoming call.
Return value
None
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 protocols, can call NdisCmDispatchCallConnected. Connection-oriented miniport drivers that provide integrated call-management support call NdisMCmDispatchCallConnected instead.
Requirements
Target platform |
Universal |
Version |
|
Header |
Ndis.h (include Ndis.h) |
Library |
Ndis.lib |
IRQL |
<= DISPATCH_LEVEL |
See also
ProtocolCmIncomingCallComplete