diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-08-17 11:59:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-17 11:59:47 -0400 |
| commit | ddedaa88753f649eb000cdbdbabfa55b4872ab27 (patch) | |
| tree | 5c2f39dbc1dda51021c9688d64e12f8348bd66f0 /src/core/hle/service/sockets/sockets.h | |
| parent | 0e3a995bf405203c04039a240c8dc6c17981cea7 (diff) | |
| parent | 755bcc459bb9a5c7d521ea9046a8ac58c5256e73 (diff) | |
Merge pull request #10989 from comex/epipe
sockets: Improve behavior when sending to closed connection
Diffstat (limited to 'src/core/hle/service/sockets/sockets.h')
| -rw-r--r-- | src/core/hle/service/sockets/sockets.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/sockets/sockets.h b/src/core/hle/service/sockets/sockets.h index 77426c46e..f86af01a4 100644 --- a/src/core/hle/service/sockets/sockets.h +++ b/src/core/hle/service/sockets/sockets.h @@ -18,7 +18,9 @@ enum class Errno : u32 { AGAIN = 11, INVAL = 22, MFILE = 24, + PIPE = 32, MSGSIZE = 90, + CONNABORTED = 103, CONNRESET = 104, NOTCONN = 107, TIMEDOUT = 110, |
