Windows error 0x801F0020, -2145452000

Detailed Error Information

ERROR_FLT_NO_WAITER_FOR_REPLY[1]

MessageNo waiter is present for the filter's reply to this message.
Declared infltWinError.h

ERROR_FLT_NO_WAITER_FOR_REPLY[2]

MessageNo waiter is present for the filter's reply to this message.
Declared inwinerror.h

HRESULT analysis[3]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode31 (0x01f)
NameFACILITY_USERMODE_FILTER_MANAGER[3][2]
DescriptionThe source of the error code is the user mode filter manager.[3][2]
Error Code32 (0x0020)

Questions

-2votes
1answer

Error = 0x801F0020 FilterReplyMessage 'error_flt_no_waiter_for_reply' minifilter driver

I am trying to connect and reply file minifilter driver. For connection I am using this hr = FilterConnectCommunicationPort(MyPortName,0,NULL, 0,NULL, &port); completion = CreateIoCompletionPort(port,NULL,0,1); FilterGetMessage to recieve message I am using this: hr = FilterReplyMessage(context.Port(PFILTER_REPLY_HEADER)&replyMessage.ReplyHeader,My_REPLY_MESSAGE_SIZE); These functions are working fine but some time FilterReplyMessage is taking time and giving error [...] read more
c++
c
winapi
minifilter

Comments

Leave a comment

(plain text only)

Sources

  1. fltWinError.h from Windows SDK 10.0.14393.0
  2. winerror.h from Windows SDK 10.0.14393.0
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0