- May 24, 2011
-
-
Yang Tse authored
Fix compiler warning: variable was set but never used Fix compiler warning: clobber ignored
-
- Apr 27, 2011
-
-
Daniel Stenberg authored
"if(a)" is our style, not "if( a )"
-
Daniel Stenberg authored
By the use of a the new lib/checksrc.pl script that checks that our basic source style rules are followed.
-
- Apr 25, 2011
-
-
Daniel Stenberg authored
Fixed indents, coding conventions and white space edits. Modified the c-ares completion callback function to again NOT read the conn data when the ares handle is being taken down as then it may have been freed already.
-
Vsevolod Novikov authored
Introducing an internal API for handling of different async resolver backends.
-
- Apr 19, 2011
-
-
Daniel Stenberg authored
Massively reduce #ifdefs all over (23 #ifdef lines less so far) Moved conversion-specific code to non-ascii.c
-
- Apr 04, 2011
-
-
Daniel Stenberg authored
1 - make sure to #define macros for cookie functions in the cookie header when cookies are disabled to avoid having to use #ifdefs in code using those functions. 2 - move cookie-specific code to cookie.c and use the functio conditionally as mentioned in (1). net result: 6 #if lines removed, and 9 lines of code less
-
- Dec 07, 2010
-
-
Yang Tse authored
-
- Dec 02, 2010
-
-
Yang Tse authored
-
- Nov 08, 2010
-
-
Yang Tse authored
-
- Sep 21, 2010
-
-
Daniel Stenberg authored
curl_easy_duphandle() was not properly duping the ares channel. The ares_dup() function was introduced in c-ares 1.6.0 so by starting to use this function we also raise the bar and require c-ares >= 1.6.0 (released Dec 9, 2008) for such builds. Reported by: Ning Dong Bug: http://curl.haxx.se/mail/lib-2010-08/0318.html
-
- Sep 05, 2010
-
-
Daniel Stenberg authored
Curl_getconnectinfo() is changed to return a proper curl_socket_t for the last socket so that it'll work more portably (and cause less compiler warnings).
-
- May 07, 2010
-
-
Howard Chu authored
Howard Chu brought the bulk work of this patch that properly moves out the sending and recving of data to the parts of the code that are properly responsible for the various ways of doing so. Daniel Stenberg assisted with polishing a few bits and fixed some minor flaws in the original patch. Another upside of this patch is that we now abuse CURLcodes less with the "magic" -1 return codes and instead use CURLE_AGAIN more consistently.
-
- Apr 25, 2010
-
-
Daniel Stenberg authored
The necessary libssh2 functions require libssh2 1.2.5 or later.
-
- Mar 24, 2010
-
-
Daniel Stenberg authored
-
- Feb 04, 2010
-
-
Yang Tse authored
fix printf-style format strings
-
- Jan 22, 2010
-
-
Daniel Stenberg authored
-
- Nov 18, 2009
-
-
Yang Tse authored
-
- Oct 27, 2009
-
-
Yang Tse authored
-
- Sep 17, 2009
-
-
Yang Tse authored
into curl_rand.c and curl_rand.h
-
- Jun 15, 2009
-
-
Patrick Monnerat authored
-
- Jun 12, 2009
-
-
Yang Tse authored
fix compiler warning
-
- May 18, 2009
-
-
Yang Tse authored
-
- May 17, 2009
-
-
Guenter Knauf authored
-
Yang Tse authored
-
- May 11, 2009
-
-
Daniel Stenberg authored
KEEP_RECV to better match the general terminology: receive and send is what we do from the (remote) servers. We read and write from and to the local fs.
-
- Apr 21, 2009
-
-
Yang Tse authored
-
- Apr 11, 2009
-
-
Yang Tse authored
-
- Mar 31, 2009
-
-
Dan Fandrich authored
-
- Mar 09, 2009
-
-
Daniel Stenberg authored
curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE option. It only enabled the cookie engine in the destination handle if data->cookies is not NULL (where data is the source handle). In case of a newly initialized handle which just had the cookie support enabled by a curl_easy_setopt(handle, CURL_COOKIEFILE, "")-call, handle->cookies was still NULL because the setopt-call only appends the value to data->change.cookielist, hence duplicating this handle would not have the cookie engine switched on. We also concluded that the slist-functionality would be suitable for being put in its own module rather than simply hanging out in lib/sendf.c so I created lib/slist.[ch] for them.
-
- Jan 29, 2009
-
-
Yang Tse authored
Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c Also adjusted socks_sspi.c to remove the link-time dependency on the Windows SSPI library using it now in the same way as it was done in http_ntlm.c.
-
- Jan 08, 2009
-
-
Dan Fandrich authored
curl_easy_reset() by creating Curl_init_userdefined(). This had the side effect of fixing curl_easy_reset() so it now also resets CURLOPT_FTP_FILEMETHOD and CURLOPT_SSL_SESSIONID_CACHE
-
- Dec 11, 2008
-
-
Daniel Stenberg authored
duphandle+curl_mutli" (http://curl.haxx.se/bug/view.cgi?id=2416182) showed that curl_easy_duphandle() wrongly also copied the pointer to the connection cache, which was plain wrong and caused a segfault if the handle would be used in a different multi handle than the handle it was duplicated from.
-
- Oct 19, 2008
-
-
Yang Tse authored
-
- Sep 30, 2008
-
-
Yang Tse authored
-
- Sep 29, 2008
-
-
Dan Fandrich authored
-
- Sep 10, 2008
-
-
Dan Fandrich authored
examples that I found in the FreeBSD ports system.
-
- Sep 06, 2008
- Sep 05, 2008
-
-
Daniel Stenberg authored
during certain conditions. I also changed this code to use realloc() based on Daniel Fandrich's suggestion.
-