Skip to content

Commit 2284f76

Browse files
authored
Merge branch 'main' into add_debian_check
2 parents bc161c9 + afc1f73 commit 2284f76

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,8 @@ The table below describes the current level of support that Subprocess has for v
230230
| **tvOS** | Not supported |
231231
| **visionOS** | Not supported |
232232
| **Ubuntu 22.04** | Supported |
233+
| **Ubuntu 24.04** | Supported |
234+
| **Red Hat Universal Base Image 9** | Supported |
233235
| **Debian 12** | Supported |
234236
| **Windows** | Supported |
235237

Sources/Subprocess/Configuration.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ internal struct CreatedPipe: ~Copyable {
864864
return CreateNamedPipeW(
865865
pipeNameW,
866866
openMode,
867-
DWORD(PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_WAIT),
867+
DWORD(PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_WAIT | PIPE_REJECT_REMOTE_CLIENTS),
868868
1, // Max instance,
869869
DWORD(readBufferSize),
870870
DWORD(readBufferSize),

0 commit comments

Comments
 (0)