From 9ac356511b2da0602a7f02ff54b30f2ab0bba07d Mon Sep 17 00:00:00 2001 From: defanor Date: Mon, 29 Jan 2024 23:38:35 +0300 Subject: Set CURLOPT_INFILESIZE on HTTP file upload --- README | 3 ++- src/rexmpp_http_upload.c | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README b/README index 1a1716a..858b59c 100644 --- a/README +++ b/README @@ -75,7 +75,8 @@ A rough roadmap: [+] Abstraction of the used XML, SASL, TLS, and DNS libraries, and optional usage of alternative ones. [.] Automated testing. -[.] Alternative module implementations in Rust. +[.] Alternative module implementations in Rust (looks like there is a + memory leak somewhere around those though). - IM features: diff --git a/src/rexmpp_http_upload.c b/src/rexmpp_http_upload.c index 5d13f97..18a3302 100644 --- a/src/rexmpp_http_upload.c +++ b/src/rexmpp_http_upload.c @@ -66,6 +66,7 @@ void rexmpp_http_upload_slot_cb (rexmpp_t *s, curl_easy_setopt(ce, CURLOPT_UPLOAD, 1); curl_easy_setopt(ce, CURLOPT_READDATA, task->fh); curl_easy_setopt(ce, CURLOPT_URL, put_url); + curl_easy_setopt(ce, CURLOPT_INFILESIZE, task->fsize); rexmpp_xml_t *header = rexmpp_xml_first_elem_child(put); while (header) { -- cgit v1.2.3