Author: andrewjlawrence Branch: winoverlapped Changeset: r96373:60b0c39477d5 Date: 2019-03-28 07:52 +0000 http://bitbucket.org/pypy/pypy/changeset/60b0c39477d5/
Log: Add connection aborted error code. diff --git a/lib_pypy/_winapi.py b/lib_pypy/_winapi.py --- a/lib_pypy/_winapi.py +++ b/lib_pypy/_winapi.py @@ -304,6 +304,7 @@ ERROR_IO_INCOMPLETE = 996 ERROR_IO_PENDING = 997 ERROR_CONNECTION_REFUSED = 1225 +ERROR_CONNECTION_ABORTED = 1236 PIPE_ACCESS_INBOUND = 0x00000001 PIPE_ACCESS_OUTBOUND = 0x00000002 _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
