The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

eio_windows: group ECONNABORTED with other connection reset errors

Windows returns this if the other end disconnects (seen while testing
with both ends on the same machine).

+1 -1
+1 -1
lib_eio_windows/err.ml
··· 20 20 | ENOENT -> Eio.Fs.err (Not_found e) 21 21 | EXDEV | EACCES | EPERM -> Eio.Fs.err (Permission_denied e) 22 22 | ECONNREFUSED -> Eio.Net.err (Connection_failure (Refused e)) 23 - | ECONNRESET | EPIPE -> Eio.Net.err (Connection_reset e) 23 + | ECONNRESET | EPIPE | ECONNABORTED -> Eio.Net.err (Connection_reset e) 24 24 | _ -> unclassified_error e 25 25 26 26 let run fn x =