const.py 523 B

12345678910111213141516171819202122232425
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. """
  4. Windows constants for IOCP
  5. """
  6. # this stuff should really be gotten from Windows headers via pyrex, but it
  7. # probably is not going to change
  8. ERROR_PORT_UNREACHABLE = 1234
  9. ERROR_NETWORK_UNREACHABLE = 1231
  10. ERROR_CONNECTION_REFUSED = 1225
  11. ERROR_IO_PENDING = 997
  12. ERROR_OPERATION_ABORTED = 995
  13. WAIT_TIMEOUT = 258
  14. ERROR_NETNAME_DELETED = 64
  15. ERROR_HANDLE_EOF = 38
  16. INFINITE = -1
  17. SO_UPDATE_CONNECT_CONTEXT = 0x7010
  18. SO_UPDATE_ACCEPT_CONTEXT = 0x700B