IPTV: fix http recv buffer size typo
This commit is contained in:
parent
ae5c207218
commit
61fdd2018c
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ iptv_http_start
|
||||||
hc->hc_hdr_received = iptv_http_header;
|
hc->hc_hdr_received = iptv_http_header;
|
||||||
hc->hc_data_received = iptv_http_data;
|
hc->hc_data_received = iptv_http_data;
|
||||||
hc->hc_handle_location = 1; /* allow redirects */
|
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 */
|
http_client_register(hc); /* register to the HTTP thread */
|
||||||
r = http_client_simple(hc, u);
|
r = http_client_simple(hc, u);
|
||||||
if (r < 0) {
|
if (r < 0) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue