Commit 2be245b7 authored by Max Kellermann's avatar Max Kellermann

input/soup: wait some more before resuming the stream

parent 17927f5c
......@@ -40,6 +40,11 @@
*/
static const size_t SOUP_MAX_BUFFERED = 512 * 1024;
/**
* Resume the stream at this number of bytes after it has been paused.
*/
static const size_t SOUP_RESUME_AT = 384 * 1024;
static SoupURI *soup_proxy;
static SoupSession *soup_session;
......@@ -422,7 +427,7 @@ input_soup_read(struct input_stream *is, void *ptr, size_t size,
}
}
if (s->pause && s->total_buffered < SOUP_MAX_BUFFERED) {
if (s->pause && s->total_buffered < SOUP_RESUME_AT) {
s->pause = false;
soup_session_unpause_message(soup_session, s->msg);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment