summaryrefslogtreecommitdiff
path: root/overlapped.c
Commit message (Collapse)AuthorAgeFilesLines
* overlapped.c: Fix usage of the unionVictor Stinner2014-01-301-9/+11
| | | | | * read_buffer can only be used for TYPE_READ and TYPE_ACCEPT types * write_buffer can only be used for TYPE_WRITE type
* Make the IOCP proactor support "waitable" handles.Richard Oudkerk2013-10-251-0/+176
|
* Make BindLocal() take an argument for the family of the socket.Richard Oudkerk2013-10-151-7/+6
|
* Fixes to make iocp loop handle ERROR_NETNAME_DELETEDRichard Oudkerk2013-10-111-0/+1
| | | | and make sink.py/source.py run with iocp.
* Add support for Windows named pipes.Richard Oudkerk2013-10-051-23/+216
|
* Correct handling of EOF for Overlapped.ReadFile().Richard Oudkerk2013-05-171-2/+14
|
* Stop exposing SetFileCompletionNotificationModes() in _overlappedRichard Oudkerk2013-02-071-28/+0
| | | | since it is not currently used by tulip, and is not WinXP compatible.
* Forgotten bits for 64 bit Windows.Richard Oudkerk2013-02-071-2/+3
|
* Fixes for 64 bit Windows.Richard Oudkerk2013-02-071-1/+1
|
* Fix return type of SetFromWindowsErr().Richard Oudkerk2013-02-061-1/+1
|
* Add --iocp argument to curl.py and crawl.py which forces use of IOCP.Richard Oudkerk2013-02-061-19/+43
| | | | | Also fix use of undeclared error constant in proactor.py, and map some Windows error numbers to correct subclasses of OSError.
* Change in handling of ERROR_BROKEN_PIPE.Richard Oudkerk2013-02-061-7/+9
|
* Stop using SetFileCompletionNotificationModes() since not available on WinXPRichard Oudkerk2013-01-281-4/+4
|
* Replace IocpSelector with IocpEventLoop, and refactor UnixEventLoop.Richard Oudkerk2013-01-251-0/+1
| | | | | Note that those tests (6 of them) which use add_reader() or add_writer() fail with NotImplementedError.
* Prevent sendall() from doing partial write without error.Richard Oudkerk2013-01-241-2/+2
|
* New experimental iocp branch.Richard Oudkerk2013-01-211-0/+997