[pypy-commit] pypy winoverlapped: Add connection aborted error code.

andrewjlawrence pypy.commits at gmail.com
Thu Mar 28 03:54:20 EDT 2019


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


More information about the pypy-commit mailing list