NdisFRestartComplete (Compact 7)

3/12/2014

A filter driver must call this function to complete a restart operation if the driver returned NDIS_STATUS_PENDING from its FilterRestart function.

Syntax

VOID
  NdisFRestartComplete(
    IN NDIS_HANDLE  NdisFilterHandle,
    IN NDIS_STATUS  Status
    );

Parameters

  • NdisFilterHandle
    The NDIS handle that identifies this filter module. NDIS passed the handle to the filter driver in a call to the FilterAttach function.
  • Status
    The final status of the restart operation. The following status values are supported:

    • NDIS_STATUS_SUCCESS
      The driver successfully restarted the flow of network data.
    • NDIS_STATUS_RESOURCES
      The restart failed because of insufficient resources.
    • NDIS_STATUS_FAILURE
      The driver indicates NDIS_STATUS_FAILURE if none of the preceding values applies. The driver should call the NdisWriteEventLogEntry function together with parameters that specify the reason for the failure.

Return Value

None

Remarks

NDIS calls a filter driver's FilterRestart function to initiate a restart request for filter module. The filter module remains in the Restarting state until the restart operation is complete.

A pending restart operation is complete after the driver calls the NdisFRestartComplete function. The filter module is in the Running state after the restart operation is complete.

A filter driver can resume that indicates received network data immediately after NDIS calls FilterRestart and before the driver calls NdisFRestartComplete. The driver should be ready to accept send requests after it completes the restart operation.

Requirements

Header

ndis.h

See Also

Reference

NDIS Functions for Filter Drivers
FilterAttach
FilterRestart