Re: [RELEASE] curl and libcurl 7.33.0 is out!

2013-10-24 Thread Guenter
On 17.10.2013 21:41, Mike Mio wrote: On Monday, October 14, 2013 2:05 PM, daniel.haxx.se wrote: ... yet another curl and libcurl release ... Download from: http://curl.haxx.se/download.html Curl and libcurl 7.33.0 That's great! May I request that the Win32 libCURL binaries be updates when con

Re: libgnurl

2013-10-24 Thread David Strauss
>From the project web page: > In practice, only the OpenSSL and GnuTLS variants seem to see widespread > deployment. Except for *every installation of Fedora, RHEL, CentOS, and Scientific Linux*. --- List admin: http://cool.haxx.se/l

Re: getting CURL parse the body

2013-10-24 Thread Daniel Stenberg
On Thu, 24 Oct 2013, Sivasamy, Kalidoss wrote: I am able to get the headers with the option below and parse the headers fine. curl_easy_setopt(m_pCurl, CURLOPT_HEADER, 1); But how can I parse header and body from the same stream? I tried to go one line after the HTTP headers, it doesn't see t

Re: [Patch] docs/examples/httpput.c

2013-10-24 Thread Dan Fandrich
On Thu, Oct 24, 2013 at 03:21:16PM +0200, Gisle Vanem wrote: > Okay. I've tested the following with MSVC and MingW. htttput.c now > simply uses stat(): Looks good to me! >>> Dan --- List admin: http://cool.haxx.se/list/listinfo/curl-

getting CURL parse the body

2013-10-24 Thread Sivasamy, Kalidoss
I am able to get the headers with the option below and parse the headers fine. curl_easy_setopt(m_pCurl, CURLOPT_HEADER, 1); But how can I parse header and body from the same stream? I tried to go one line after the HTTP headers, it doesn't see to work. Any ideas or a link to a similar discussio

Re: Question about some platform updates to Windows

2013-10-24 Thread myriachan
Gisle Vanem wrote: > "Myria" wrote: > > > I noticed that Windows does not define HAVE_GMTIME_R or HAVE_LOCALTIME_R. > > It is true that Visual Studio's C runtime library doesn't have gmtime_r, > > but > > it has a somewhat-equivalent API, gmtime_s. gmtime_s's prototype is > > differe

Re: [Patch] docs/examples/httpput.c

2013-10-24 Thread Gisle Vanem
"Dan Fandrich" wrote: But I'm not sure is needed at all. It's needed for close(2). But the only reason that's needed is because fstat is used instead of stat(2); if you fix that, then you could remove that include altogether. Okay. I've tested the following with MSVC and MingW. htttput.c n

Re: Migration away from SourceForge?

2013-10-24 Thread Václav Zeman
On 24 October 2013 12:18, Jeffrey Walton wrote: > On Sun, Oct 13, 2013 at 5:19 AM, Daniel Stenberg wrote: >> On Sat, 12 Oct 2013, Jeffrey Walton wrote: >> >>> Would it be possible to migrate away from SourceForge? Or at least put it >>> on the roadmap for debate? >> >> >> I would like that as wel

Re: Question about some platform updates to Windows

2013-10-24 Thread Gisle Vanem
"Myria" wrote: I noticed that Windows does not define HAVE_GMTIME_R or HAVE_LOCALTIME_R. It is true that Visual Studio's C runtime library doesn't have gmtime_r, but it has a somewhat-equivalent API, gmtime_s. gmtime_s's prototype is different, reversing the order of the two parameters and r

Re: Migration away from SourceForge?

2013-10-24 Thread Jeffrey Walton
On Sun, Oct 13, 2013 at 5:19 AM, Daniel Stenberg wrote: > On Sat, 12 Oct 2013, Jeffrey Walton wrote: > >> Would it be possible to migrate away from SourceForge? Or at least put it >> on the roadmap for debate? > > > I would like that as well since I find sourceforge quite annoying these > days. We

Question about some platform updates to Windows

2013-10-24 Thread Myria
Hi =) I'd like to make some platform updates to the Windows side of things, and was wondering what the best way to proceed would be. October 17 had the release of Visual Studio 12, or 2013; it is _MSC_VER 1800. I'd like to make some patches to update curl to support some of the newer stuff,