aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/AsyncInputStream.cxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* InputStream: make offset_type unsignedMax Kellermann2014-08-191-3/+0
|
* input/async: use IsEOF() instead of !open for "ready" checkMax Kellermann2014-06-211-2/+3
| | | | | Checking "!open" did not work with the NFS plugin because that plugin does not close the file automatically, unlike CURL.
* Revert "AsyncInputStream: fix assertion failure in AppendToBuffer()"Max Kellermann2014-06-211-6/+4
| | | | | | | This reverts commit 966c4244cbe0de174df1e72e917078269ec9dbb9. The commit was bad, because the bug was really in NfsInputStream::DoRead(); see previous commit.
* AsyncInputStream: fix assertion failure in AppendToBuffer()Max Kellermann2014-06-171-4/+6
|
* AsyncInputStream: reset "paused" when seekingMax Kellermann2014-06-171-0/+1
| | | | May cause assertion failure.
* input/curl: hold mutex while writing to postponed_errorMax Kellermann2014-06-171-0/+10
|
* input/async: add offset/size comparison to IsEOF()Max Kellermann2014-05-241-1/+2
|
* input/curl: move code to AsyncInputStreamMax Kellermann2014-05-241-0/+239
New base class for other InputStream implementations that run in the I/O thread.