Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-09-28 | SSL session sharing support added | Alejandro Alvarez | |
With locking, plus test, plus documentation | |||
2011-09-27 | Added SPNEGO to NetWare build. | Guenter Knauf | |
2011-09-26 | remove short-lived CURL_WRITEFUNC_OUT_OF_MEMORY | Yang Tse | |
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 | 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 | 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 | NetWare makefile tweaks to select different builds. | Guenter Knauf | |
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-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 | 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 | 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 | 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-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-18 | Curl_gethostname: return un-qualified machine name | Steve Holme | |
Fixed Curl_gethostname() so that it always returns the un-qualified machine name rather than being dependent on the socket provider. Note: The return of getenv("CURL_GETHOSTNAME") is also parsed in case the developer / test harness provided a fully qualified domain name as it's value as well. | |||
2011-09-15 | Make Curl_safefree() macro assign NULL to given pointer when free'd | Yang Tse | |
2011-09-14 | ftp.c: add a couple of failure messages | Yang Tse | |
2011-09-13 | Curl_add_custom_headers: support headers with no data | warp kawada | |
A custom HTTP header ending in a semicolon instead of a colon will be treated as a header to be added without any data portion. | |||
2011-09-13 | codestyle: minor whitespace fix | Daniel Stenberg | |
2011-09-13 | polarssl: build with PolarSSL-1.0.0 | Jeff Pohlmeyer | |
With this fix, it should work for PolarSSL-1.0.0 (and SVN-1091 trunk) and retain compatibility with earlier versions. (Tested with 0.14.1) PolarSSL still doesn't play nicely with curl's CA bundle (we discussed this before) but I was at least able to retrieve the https://www.gmail.com/ login page using a modified ca-certificates.crt file with all 3 versions of PolarSSL. | |||
2011-09-12 | ftp.c: fix socket leak torture tests detected 2011-08-30 | Yang Tse | |
Also fix inappropriate error handling when sending ftp EPRT or PORT commands. | |||
2011-09-11 | spell-checked comments | Daniel Stenberg | |
2011-09-11 | Updated makefiles to latest libssh2. | Guenter Knauf | |
2011-09-10 | ftp.c: fix ftp active connects which got broken with commit fdf157abdf | Yang Tse | |
2011-09-10 | ssh.c: revert needless commit 7b7c45879e | Yang Tse | |
2011-09-09 | tcpnodelay: rename variable | Daniel Stenberg | |
Renamed the variable from 'proto' to 'level' simply because it is not protocol you set but level and that is the name of the argument used in man pages and the POSIX documentation of the setsockopt function. | |||
2011-09-08 | libssh2: use calloc as alloc function for libssh2 versions older than 1.3 | Yang Tse | |
This workarounds old libssh2 versions not properly initializing some ssh session variables, which would trigger memory debuggers warnings on memory being used without having been initialized. | |||
2011-09-08 | Curl_speedcheck: don't mistakenly clear Curl_expire() | Adriano Meirelles | |
The current version of speedcheck.c may disable timeout by setting zero to Curl_expire. Which is fine using the curl_multi_perform, because it recheck all timeout internals, but when using custom event poller (like hiperfifo.c) it may keep stalle connection forever. | |||
2011-09-07 | ftp_state_use_port: minor code indent fix | Daniel Stenberg | |
2011-09-07 | checksrc: detect "}else" uses as well | Daniel Stenberg | |
2011-09-07 | ssh.c: fix memory leaks triggered upon OOM or other failures | Yang Tse | |
2011-09-05 | pingpong.c: avoid a memmove call in function Curl_pp_vsendf | Yang Tse | |
2011-09-05 | fix bool variables checking and assignment | Yang Tse | |
2011-09-04 | Fixed final message output. | Guenter Knauf | |
2011-09-04 | setup_once.h cleanup and sync | Yang Tse | |
2011-09-04 | Fix to skip untrusted certs. | Guenter Knauf | |
2011-09-04 | Added SPNEGO to MinGW makefiles. | Guenter Knauf | |
2011-09-04 | NTLM WB: fix file descriptor leak upon OOM condition | Yang Tse | |
2011-09-03 | revert changes not intended to be pushed with commit 6b75d2c2 | Yang Tse | |
2011-09-03 | fix a bunch of MSVC compiler warnings | Yang Tse | |