Re: [PATCH 2/2] Demo support for packs via HTTP

2005-07-12 Thread Darrin Thompson

Daniel Barkalow wrote:
If I understand the curl documentation, you should be able to set options 
on the curl object when it has just been created, if those options aren't

going to change between requests. Note that I make requests from multiple
places, but I use the same curl object for all of them.



I didn't realize that it was the same object. Great!

--
Darrin

-
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/2] Demo support for packs via HTTP

2005-07-11 Thread Daniel Barkalow
On Mon, 11 Jul 2005, Darrin Thompson wrote:

 On Sun, 2005-07-10 at 15:56 -0400, Daniel Barkalow wrote:
  +   curl_easy_setopt(curl, CURLOPT_FILE, indexfile);
  +   curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite);
  +   curl_easy_setopt(curl, CURLOPT_URL, url);
 
 I was hoping to send in a patch which would turn on user auth and turn
 off ssl peer verification.
 
 Your (preliminary obviously) patch puts curl handling in two places. Is
 there a place were I can safely start working on adding the needed
 setopts?

If I understand the curl documentation, you should be able to set options 
on the curl object when it has just been created, if those options aren't
going to change between requests. Note that I make requests from multiple
places, but I use the same curl object for all of them.

-Daniel
*This .sig left intentionally blank*

-
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html