aboutsummaryrefslogtreecommitdiff
path: root/src/inputStream.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-26 08:27:10 +0200
committerMax Kellermann <max@duempel.org>2008-08-26 08:27:10 +0200
commit82ca4cf8ce421cbec87667f6c22b3e7165443016 (patch)
tree907eeb0f5f90446ffb5f05a4443e386cd0e12f63 /src/inputStream.c
parent6120635f06ecadcc1ab0d59a54b6842a78e11746 (diff)
added InputStream.ready
The flag "ready" indicates whether the input stream is ready and it has parsed all meta data. Previously, it was impossible for decodeStart() to see the content type of HTTP input streams, because at that time, the HTTP response wasn't parsed yet.
Diffstat (limited to 'src/inputStream.c')
-rw-r--r--src/inputStream.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inputStream.c b/src/inputStream.c
index 9495beb8..7686fed4 100644
--- a/src/inputStream.c
+++ b/src/inputStream.c
@@ -31,6 +31,7 @@ void initInputStream(void)
int openInputStream(InputStream * inStream, char *url)
{
+ inStream->ready = 0;
inStream->offset = 0;
inStream->size = 0;
inStream->error = 0;