We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a23354 commit 42fa94bCopy full SHA for 42fa94b
IntelPresentMon/CommonUtilities/pipe/Pipe.cpp
@@ -156,9 +156,9 @@ namespace pmon::util::pipe
156
// create the named pipe and retain the handle in a wrapper object
157
win::Handle handle(CreateNamedPipeA(
158
name.c_str(),
159
- PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED, // open mode
160
- PIPE_TYPE_BYTE | PIPE_READMODE_BYTE, // pipe mode
161
- PIPE_UNLIMITED_INSTANCES, // max instances
+ PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED, // open mode
+ PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_REJECT_REMOTE_CLIENTS, // pipe mode
+ PIPE_UNLIMITED_INSTANCES, // max instances
162
4096, // out buffer
163
4096, // in buffer
164
0, // timeout
0 commit comments