// ndis.h
NDIS_STATUS NdisFRestartFilter(
[in] NDIS_HANDLE NdisFilterHandle
);
View the official Windows Driver Kit DDI reference
No description available.
A filter driver calls the NdisFRestartFilter function to request NDIS to initiate a restart operation for a filter module.
NdisFilterHandle
[in]The NDIS handle that identifies this filter module. NDIS passed the handle to the filter driver in a call to the FilterAttach function.
NdisFRestartFilter returns one of the following status values:
Return code | Description |
---|---|
NDIS_STATUS_SUCCESS | NdisFRestartFilter returns NDIS_STATUS_SUCCESS if it started the restart operation. |
NDIS_STATUS_RESOURCES | NdisFRestartFilter failed because of insufficient resources. |
NDIS_STATUS_FAILURE | NdisFRestartFilter returns NDIS_STATUS_FAILURE if none of the preceding values applies. |
The filter driver can change the filter module attributes at run time by calling the NdisFRestartFilter function. NdisFRestartFilter schedules a pause and then a restart operation for the specified filter module.
Before NDIS restarts the filter module, it calls the FilterSetModuleOptions function for the filter module. From its FilterSetModuleOptions function, the filter driver can change the data handlers for that filter module by calling the NdisSetOptionalHandlers function and specifying a new set of handlers.