We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b25a696 + 42fa94b commit 0c7e209Copy full SHA for 0c7e209
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