From 61fdd2018cf44d782ceb113ad3a60c506e70e0dc Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Thu, 15 May 2014 08:00:02 +0200 Subject: [PATCH] IPTV: fix http recv buffer size typo --- src/input/mpegts/iptv/iptv_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/mpegts/iptv/iptv_http.c b/src/input/mpegts/iptv/iptv_http.c index 9aed89be..660ece7d 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) {