Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-09-27 | Added SPNEGO to NetWare build. | Guenter Knauf | |
2011-09-26 | curl tool: fix a compiler warning | Yang Tse | |
2011-09-26 | curl tool: fix some OOM handling - f4853db5 follow-up | Yang Tse | |
2011-09-26 | curl tool: fix some OOM handling | Yang Tse | |
2011-09-26 | remove short-lived CURL_WRITEFUNC_OUT_OF_MEMORY | Yang Tse | |
2011-09-26 | Added unsigned char* to _curl_is_debug_cb. | Guenter Knauf | |
2011-09-26 | smtp_connect: use defined buffer length for hostname | Steve Holme | |
2011-09-25 | Curl_ntlm_create_type3_message: Tidied up the use of Curl_gethostname. | Steve Holme | |
Removed the code that striped off the domain name when Curl_gethostname returned the fully qualified domain name as the function has been updated to return the un-qualified host name. Replaced the use of HOSTNAME_MAX as the size of the buffer in the call to Curl_gethostname with sizeof(host) as this is safer should the buffer size ever be changed. | |||
2011-09-25 | HOSTNAME_MAX: Moved to curl_gethostname.h | Steve Holme | |
Moved HOSTNAME_MAX #define into curl_gethostname.h rather than being locally defined in curl_gethostname.c, curl_ntlm_msgs.c and smtp.c. | |||
2011-09-25 | RELEASE-NOTES: synced with d2a47021c0a6 | Daniel Stenberg | |
2011-09-25 | Q&D fix header inclusion order | Yang Tse | |
2011-09-25 | allow write callbacks to indicate OOM to libcurl | Yang Tse | |
Allow (*curl_write_callback) write callbacks to return CURL_WRITEFUNC_OUT_OF_MEMORY to properly indicate libcurl of OOM conditions inside the callback itself. | |||
2011-09-25 | Changed some main makefile targets. | Guenter Knauf | |
2011-09-25 | curl_multi_fdset: avoid FD_SET out of bounds | Daniel Stenberg | |
If a socket is larger than FD_SETSIZE, avoid using FD_SET() on the platforms where this is possible. Bug: http://curl.haxx.se/bug/view.cgi?id=3413274 Reported by: Tim Starling | |||
2011-09-25 | Fixed MinGW examples makefile. | Guenter Knauf | |
2011-09-25 | NetWare makefile tweaks to select different builds. | Guenter Knauf | |
2011-09-25 | POST: always set postfieldsize | Daniel Stenberg | |
When we use binary posts and regular ones intermixed on a single command line, we cannot do strlen() etc on the data to figure out the length (when inserting '&' and more). We must therefore keep track of the post data length. Then we also end up setting the libcurl option with the known size, so that we don't risk that libcurl will do strlen() on the data. This has the minor side-effect that --libcurl source codes now always will use CURLOPT_POSTFIELDSIZE but I don't consider that terribly damaging. Bug: http://curl.haxx.se/bug/view.cgi?id=3413181 Reported by: Taneli Vähäkangas | |||
2011-09-24 | curl tool: fix a compiler warning | Yang Tse | |
2011-09-24 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
2011-09-24 | Added header to be included by dist script. | Guenter Knauf | |
Probably the wrong place, but I dont know better. | |||
2011-09-24 | curl tool: fix some OOM handling issues | Yang Tse | |
2011-09-24 | http header: allow Content-Length to be replaced | Daniel Stenberg | |
In some cases Content-Length: couldn't be replaced by an application Also, indented some code properly | |||
2011-09-23 | MinGW64 has this prototype already. | Guenter Knauf | |
2011-09-23 | Fixed scanf format for WORD = unsigned short. | Guenter Knauf | |
2011-09-23 | Added Win32-only samples. | Guenter Knauf | |
2011-09-23 | Added a workaround for printing size_t. | Guenter Knauf | |
2011-09-22 | Curl_pgrsStartNow: keep HEADERS_OUT set | Daniel Stenberg | |
To avoid that the progress meter headers get output between each transfer, make sure the bits gets kept when (re-)inited. Reported by: Christopher Stone | |||
2011-09-22 | curl tool: fix some OOM handling issues | Yang Tse | |
2011-09-22 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
my_setopt and my_setopt_str no longer ignores curl_easy_setopt result. Fixed some OOM handling issues. | |||
2011-09-22 | Added NetWare examples makefile. | Guenter Knauf | |
2011-09-22 | NTLM_WB: fix disabling of NTLM_WB when NTLM is disabled | Yang Tse | |
2011-09-21 | test 814: smtp without --mail-from | Daniel Stenberg | |
Verifies the fix from commit 322f3d5af7093 | |||
2011-09-21 | smtp: without a MAIL_FROM, send blank MAIL FROM | Gisle Vanem | |
I think curl should ignore this case and smtp.c should test for this. Since RFC-2821 seems to allow a "null reverse-path". Ref. "MAIL FROM:<>" in section 3.7, page 25. | |||
2011-09-21 | lib/http: add missing whitespace in verbose output | Dave Reisner | |
Example: * upload completely sent off: 35out of 35 bytes Should be: * upload completely sent off: 35 out of 35 bytes | |||
2011-09-21 | Another MinGW example makefile tweak. | Guenter Knauf | |
2011-09-21 | Fixed sample to compile for Windows platform. | Guenter Knauf | |
2011-09-21 | curl tool: make my_setopt ignore curl_easy_setopt result again. | Yang Tse | |
Related code not ready yet for this kind of checks. | |||
2011-09-21 | Changed suffix rules to pattern rules. | Guenter Knauf | |
Suffix rules cannot have any prerequisites of their own. | |||
2011-09-21 | Added dependency so that curlbuild.h is created. | Guenter Knauf | |
2011-09-21 | Some more MinGW build tweaks. | Guenter Knauf | |
Added envvars to specify OpenSSL include, libpath and lib. Added rule to create curlbuild.h from curlbuild.h.dist. | |||
2011-09-21 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
my_setopt and my_setopt_str no longer ignores curl_easy_setopt result. Fixed some OOM handling issues. | |||
2011-09-20 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |
Overhauled FindWin32CACert() | |||
2011-09-20 | A bunch of MinGW build tweaks. | Guenter Knauf | |
All paths to dependencies now quoted; synced examples makefile. | |||
2011-09-20 | Changed Windows 64bit OS define to x86_64. | Guenter Knauf | |
Also added check for __x86_64__ define since MinGW64 seems to define the _M_X64 macro through a header not available for config-win32.h. | |||
2011-09-20 | Also skip certs masked as CKT_NSS_TRUST_UNKNOWN. | Guenter Knauf | |
Fix posted by Tomas Hoger <thoger redhat com>. | |||
2011-09-20 | Added _WIN32_WINNT define for IPv6 builds. | Guenter Knauf | |
2011-09-20 | Curl_follow: handle redirects to "//hostname/path" | Daniel Stenberg | |
2011-09-19 | curl tool: truly fix compiler warning | Yang Tse | |
2011-09-19 | curl tool: fix compiler warning | Yang Tse | |
2011-09-19 | curl tool: reviewed code moved to tool_*.[ch] files | Yang Tse | |