]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
IPTV: fix http recv buffer size typo
authorJaroslav Kysela <perex@perex.cz>
Thu, 15 May 2014 06:00:02 +0000 (08:00 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 15 May 2014 06:08:56 +0000 (08:08 +0200)
src/input/mpegts/iptv/iptv_http.c

index 9aed89beebaa1708c5666a466fb328277a86c215..660ece7dd9b35cabfed9efce40561704e790b747 100644 (file)
@@ -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) {