aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-01-29Some compilers lacks <sys/time.h>. Include "timeval.h" to simplify the #ifdefs.Gisle Vanem
2007-01-29Use DOS line-endings.Gisle Vanem
2007-01-29release timeDaniel Stenberg
2007-01-29the user-agent fixDaniel Stenberg
2007-01-29the libtest source codes that use curlx_tv* functions MUST use theDaniel Stenberg
lib/timeval.c source code since those functions are not in the API (and might not be accessible)
2007-01-29- Michael Wallner reported that when doing a CONNECT with a custom User-AgentDaniel Stenberg
header, you got _two_ User-Agent headers in the CONNECT request...! Added test case 287 to verify the fix.
2007-01-29fixed segfault when compiled with MingW32 and cmd or command shell.Gunter Knauf
2007-01-28Andreas Rieke added extra infof() for when a connection is not re-used due toDaniel Stenberg
SSL conditions not being the same
2007-01-28silence compiler warningsDaniel Stenberg
2007-01-28enabled build with sspi.Gunter Knauf
2007-01-28enabled build with hardcoded ca-bundle path;Gunter Knauf
added distclean target.
2007-01-28force to create ca-bunde.h even if it exists already.Gunter Knauf
2007-01-28use var for awk.Gunter Knauf
2007-01-28curl_easy_reset() now resets the CA bundle path correctlyDaniel Stenberg
2007-01-28another small fix to directory listing output; disabled CURL_LIBSSH2_DEBUG.Gunter Knauf
2007-01-28recent contributorsDaniel Stenberg
2007-01-28Compiler warning fixYang Tse
2007-01-27- David McCreedy fixed the Curl command line tool for HTTP on non-ASCIIDaniel Stenberg
platforms.
2007-01-27fix sftp directory listing so that it works without -v and is redirectable ↵Gunter Knauf
with -o/-O.
2007-01-27tell us what we put out here...Gunter Knauf
2007-01-27update copyright year noticeYang Tse
2007-01-27Compiler warning fixYang Tse
2007-01-27sync with lib/setup_once.hYang Tse
2007-01-27sync comment with realityYang Tse
2007-01-26remove the res file too with clean target.Gunter Knauf
2007-01-26removed CFLAGS from linking.Gunter Knauf
2007-01-26fix redefine warning when build from CVS.Gunter Knauf
2007-01-26Fixed compiler warning.Dan Fandrich
2007-01-26Remove LoadLibrary() (from my private build).Gisle Vanem
2007-01-26Free 'config->libcurl' at exit.Gisle Vanem
2007-01-26Use "%Od" instead of CURL_FORMAT_OFF_T for <curlx.h> functions.Gisle Vanem
2007-01-26Options of type CURLOPTTYPE_FUNCTIONPOINT are never printable.Gisle Vanem
2007-01-26updated mingw build instructions for libssh2.Gunter Knauf
2007-01-26added project header to lib resource file; fixed header copyright.Gunter Knauf
2007-01-26use provided resource file for exe.Gunter Knauf
2007-01-25fix compiler warnings for SSL-disabled buildsDaniel Stenberg
2007-01-25ugha, prevent a buffer overflow and allow very long strings in the generatedDaniel Stenberg
libcurl source...
2007-01-25- Added the --libcurl [file] option to curl. Append this option to anyDaniel Stenberg
ordinary curl command line, and you will get a libcurl-using source code written to the file that does the equivalent operation of what your command line operation does!
2007-01-25removed unused define.Gunter Knauf
2007-01-25set proper lib extension for non-configure mingw32 builds on Win32.Gunter Knauf
2007-01-25fixed copyright for new year.Gunter Knauf
2007-01-25added targets for libssh2 builds.Gunter Knauf
2007-01-25enabled build with libssh2.Gunter Knauf
2007-01-25fix non-SSL builds againDaniel Stenberg
2007-01-25Fixed a dangling pointer problem that prevented the http_proxy environmentDan Fandrich
variable from being properly used in many cases (and caused test case 63 to fail).
2007-01-25removed not used define.Gunter Knauf
2007-01-24Only shut down SSL if the CCC command succeeded.Dan Fandrich
2007-01-24moved the SSL pending function to the proper place and nameDaniel Stenberg
2007-01-24bail out on strdup() errorsDaniel Stenberg
2007-01-23- David McCreedy did NTLM changes mainly for non-ASCII platforms:Daniel Stenberg
#1 There's a compilation error in http_ntlm.c if USE_NTLM2SESSION is NOT defined. I noticed this while testing various configurations. Line 867 of the current http_ntlm.c is a closing bracket for an if/else pair that only gets compiled in if USE_NTLM2SESSION is defined. But this closing bracket wasn't in an #ifdef so the code fails to compile unless USE_NTLM2SESSION was defined. Lines 198 and 140 of my patch wraps that closing bracket in an #ifdef USE_NTLM2SESSION. #2 I noticed several picky compiler warnings when DEBUG_ME is defined. I've fixed them with casting. By the way, DEBUG_ME was a huge help in understanding this code. #3 Hopefully the last non-ASCII conversion patch for libcurl in a while. I changed the "NTLMSSP" literal to hex since this signature must always be in ASCII. Conversion code was strategically added where necessary. And the Curl_base64_encode calls were changed so the binary "blobs" http_ntlm.c creates are NOT translated on non-ASCII platforms.