NdisMCmDispatchCallConnected (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.
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.
Syntax
VOID NdisMCmDispatchCallConnected(
_In_ NDIS_HANDLE NdisVcHandle
);
Parameters
- NdisVcHandle [in]
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.
Return value
None
Remarks
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 protocols, call NdisCmDispatchCallConnected instead.
Requirements
Target platform |
Desktop |
Version |
|
Header |
Ndis.h (include Ndis.h) |
IRQL |
<= DISPATCH_LEVEL |
See also
ProtocolCmIncomingCallComplete