RE: Progress meter always there

2023-04-20 Thread Arnaud Compan via curl-library
pening links or attachments. > > On Wed, Apr 19, 2023 at 01:26:13PM +0000, Arnaud Compan via curl-library > wrote: > > Is there a way to silence the internal progress meter ? > > There's an opt for that: CURLOPT_NOPROGRESS Yes, I know. What I want is: - that my XF

Progress meter always there

2023-04-19 Thread Arnaud Compan via curl-library
Hello, I have a question regarding the progress meter. I use libcurl and part of the easy handle configuration is as follows: CHECK_CURL_EASY (curl_easy_setopt (ep->eh, CURLOPT_XFERINFOFUNCTION, xfer_cb)); CHECK_CURL_EASY (curl_easy_setopt (ep->eh, CURLOPT_XFERINFODATA, ep));

RE: Undefined reference of a new libcurl function

2022-10-14 Thread Arnaud Compan via curl-library
> > On Thu, Oct 13, 2022 at 08:46:20AM +, Arnaud Compan via curl-library > wrote: > > In details, I've added the function in lib/multi.c: > > void my_test(struct Curl_easy *data) > > { > > } > > And in include/curl/multi.h:

Undefined reference of a new libcurl function

2022-10-13 Thread Arnaud Compan via curl-library
Hello, For testing purposes, I've tried to add a function in libcurl but I'm facing undefined reference link error regarding this function when I build my test program. In details, I've added the function in lib/multi.c: void my_test(struct Curl_easy *data) { }