Re: CURL and CULM data structure

2016-10-28 Thread Ray Satiro via curl-library
On 10/28/2016 11:58 AM, Miloš Ljumović wrote: I think what you're looking for is this: /* This is the struct known as CURLM on the outside */ struct Curl_multi { /* First a simple identifier to easier detect if a user mix up this multi handle with an easy handle. Set this to

RE: CURL and CULM data structure

2016-10-28 Thread Ramachandran, Agalya (Contractor)
Thank you. Yeah I was looking for this. -Original Message- From: curl-library [mailto:curl-library-boun...@cool.haxx.se] On Behalf Of Miloš Ljumovic Sent: Friday, October 28, 2016 11:58 AM To: curl-library@cool.haxx.se Subject: Re: CURL and CULM data structure I think what you're

Re: CURL and CULM data structure

2016-10-28 Thread Miloš Ljumović
I think what you're looking for is this: /* This is the struct known as CURLM on the outside */ struct Curl_multi { /* First a simple identifier to easier detect if a user mix up this multi handle with an easy handle. Set this to CURL_MULTI_HANDLE. */ long type; /* We have a

RE: CURL and CULM data structure

2016-10-28 Thread Ramachandran, Agalya (Contractor)
axx.se] On Behalf Of bch Sent: Friday, October 28, 2016 11:00 AM To: libcurl development <curl-library@cool.haxx.se> Subject: RE: CURL and CULM data structure On Oct 28, 2016 7:38 AM, "Ramachandran, Agalya (Contractor)" <agalya_ramachand...@comcast.com<mailto:agalya_ramachand...

RE: CURL and CULM data structure

2016-10-28 Thread bch
trieve information; your use case my already be expertly solved in the project. -bch > Regards, > Agalya > -Original Message- > From: curl-library [mailto:curl-library-boun...@cool.haxx.se] On Behalf Of Rich Gray > Sent: Friday, October 28, 2016 9:55 AM > To: libcurl develo

RE: CURL and CULM data structure

2016-10-28 Thread Ramachandran, Agalya (Contractor)
brary-boun...@cool.haxx.se] On Behalf Of Rich Gray Sent: Friday, October 28, 2016 9:55 AM To: libcurl development <curl-library@cool.haxx.se> Subject: Re: CURL and CULM data structure Ramachandran, Agalya (Contractor) wrote: > Hi team, > > I have a query with respect to CURL

Re: CURL and CULM data structure

2016-10-28 Thread Rich Gray
Ramachandran, Agalya (Contractor) wrote: Hi team, I have a query with respect to CURL and CURLM data structure. For debugging purpose, I want to print the actual value in the following handles. ·CURL *handle; ·CURLM *multi_handle; Can you please guide me what is the data structure for CURL,

CURL and CULM data structure

2016-10-28 Thread Ramachandran, Agalya (Contractor)
Hi team, I have a query with respect to CURL and CURLM data structure. For debugging purpose, I want to print the actual value in the following handles. * CURL *handle; * CURLM *multi_handle; Can you please guide me what is the data structure for CURL, and how can I print it