Re: Issue with Outputting CURL Verbose Info to a File

2018-02-09 Thread Chris Molnar
Hi, Here is a compilable copy Thank you for the assistance, Chris On Wed, Feb 7, 2018 at 4:15 PM, Patrick Schlangen wrote: > Hi, > > > Do you think anything else could be causing this problem? > > could you send a full example (compilable)? > > Thanks, > > Patrick > > >

AW: Issue with Outputting CURL Verbose Info to a File

2018-02-07 Thread Patrick Schlangen
Hi, > Do you think anything else could be causing this problem? could you send a full example (compilable)? Thanks, Patrick --- Unsubscribe: https://cool.haxx.se/list/listinfo/curl-library Etiquette:

Re: Issue with Outputting CURL Verbose Info to a File

2018-02-07 Thread Chris Molnar
Hi Patrick, Thanks for the tip, but sadly it still doesn't work for me. When I use a reference (&) all the verbose info gets displayed to the console, while with a pointer (*) it vanishes (not on the console or in the file). Do you think anything else could be causing this problem? Thanks for

AW: Issue with Outputting CURL Verbose Info to a File

2018-02-06 Thread Patrick Schlangen
Hi, > but it never seems to output anything to the file try passing a FILE * to the curl_easy_setopt instead of a FILE &. Best Regards Patrick --- Unsubscribe: https://cool.haxx.se/list/listinfo/curl-library Etiquette:

Issue with Outputting CURL Verbose Info to a File

2018-02-06 Thread Chris Molnar
Hi All, I seem to be running into a problem when trying to output the verbose info to a file. I have set it up to send using curl_easy_setopt(curl, CURLOPT, file) as it shows on the website (the first 2 links below) but it never seems to output anything to the file. I looked further into this