From: Jaroslav Kysela Date: Thu, 15 May 2014 06:00:02 +0000 (+0200) Subject: IPTV: fix http recv buffer size typo X-Git-Tag: v4.1~2089 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61fdd2018cf44d782ceb113ad3a60c506e70e0dc;p=thirdparty%2Ftvheadend.git IPTV: fix http recv buffer size typo --- diff --git a/src/input/mpegts/iptv/iptv_http.c b/src/input/mpegts/iptv/iptv_http.c index 9aed89bee..660ece7dd 100644 --- a/src/input/mpegts/iptv/iptv_http.c +++ b/src/input/mpegts/iptv/iptv_http.c @@ -73,7 +73,7 @@ iptv_http_start hc->hc_hdr_received = iptv_http_header; hc->hc_data_received = iptv_http_data; hc->hc_handle_location = 1; /* allow redirects */ - hc->hc_chunk_size = 128*1024; /* increase buffering */ + hc->hc_io_size = 128*1024; /* increase buffering */ http_client_register(hc); /* register to the HTTP thread */ r = http_client_simple(hc, u); if (r < 0) {