PFLT_DISCONNECT_NOTIFY回调函数 (fltkernel.h)

FltMgr 调用微型筛选器的 DisconnectNotifyCallback 回调函数,以在客户端端口断开连接时通知微型筛选器。

语法

PFLT_DISCONNECT_NOTIFY PfltDisconnectNotify;

void PfltDisconnectNotify(
  PVOID ConnectionCookie
)
{...}

参数

ConnectionCookie

[in]指向唯一标识此客户端端口的微筛选器定义的信息的指针。 创建客户端端口时,微型筛选器在其 ConnectNotifyCallback 例程的 ConnectionPortCookie 参数中返回此上下文指针。

返回值

没有

言论

FltMgr 每当客户端端口的用户模式句柄计数达到零或即将卸载微型筛选器时,DisconnectNotifyCallback 调用。

有关详细信息,请参阅 用户模式与微型筛选器之间的通信

要求

要求 价值
标头 fltkernel.h
FltMgr.lib
DLL FltMgr.sys
IRQL PASSIVE_LEVEL

另请参阅

ConnectNotifyCallback

FltCreateCommunicationPort