mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 08:23:05 -05:00
dll: debug: QueryStreamInformation logging
This commit is contained in:
parent
3bf4140f91
commit
e16dfd8a43
@ -618,6 +618,16 @@ FSP_API VOID FspDebugLogRequest(FSP_FSCTL_TRANSACT_REQ *Request)
|
|||||||
Sddl ? "\"" : "");
|
Sddl ? "\"" : "");
|
||||||
LocalFree(Sddl);
|
LocalFree(Sddl);
|
||||||
break;
|
break;
|
||||||
|
case FspFsctlTransactQueryStreamInformationKind:
|
||||||
|
FspDebugLog("%S[TID=%04lx]: %p: >>QueryStreamInformation %s%S%s%s\n",
|
||||||
|
FspDiagIdent(), GetCurrentThreadId(), Request->Hint,
|
||||||
|
Request->FileName.Size ? "\"" : "",
|
||||||
|
Request->FileName.Size ? (PWSTR)Request->Buffer : L"",
|
||||||
|
Request->FileName.Size ? "\", " : "",
|
||||||
|
FspDebugLogUserContextString(
|
||||||
|
Request->Req.QueryStreamInformation.UserContext, Request->Req.QueryStreamInformation.UserContext2,
|
||||||
|
UserContextBuf));
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
FspDebugLogRequestVoid(Request, "INVALID");
|
FspDebugLogRequestVoid(Request, "INVALID");
|
||||||
break;
|
break;
|
||||||
@ -820,6 +830,9 @@ FSP_API VOID FspDebugLogResponse(FSP_FSCTL_TRANSACT_RSP *Response)
|
|||||||
LocalFree(Sddl);
|
LocalFree(Sddl);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case FspFsctlTransactQueryStreamInformationKind:
|
||||||
|
FspDebugLogResponseStatus(Response, "QueryStreamInformation");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
FspDebugLogResponseStatus(Response, "INVALID");
|
FspDebugLogResponseStatus(Response, "INVALID");
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user