mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[AFD] Mark the socket as named pipe, so NtWriteFile actually knows what to do with it.
CORE-13067
This commit is contained in:
parent
9168226378
commit
8b84b1c6b3
1 changed files with 1 additions and 0 deletions
|
@ -313,6 +313,7 @@ AfdCreateSocket(PDEVICE_OBJECT DeviceObject, PIRP Irp,
|
|||
|
||||
DeviceExt = DeviceObject->DeviceExtension;
|
||||
FileObject = IrpSp->FileObject;
|
||||
FileObject->Flags |= FO_NAMED_PIPE;
|
||||
//Disposition = (IrpSp->Parameters.Create.Options >> 24) & 0xff;
|
||||
|
||||
Irp->IoStatus.Information = 0;
|
||||
|
|
Loading…
Reference in a new issue