Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-01 | fix ldap related compilation issues | Yang Tse | |
2010-06-01 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2010-05-31 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2010-05-31 | smtp_authenticate: avoid compiler warnings | Patrick Monnerat | |
2010-05-31 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2010-05-31 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2010-05-31 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2010-05-31 | fix compiler warning: external declaration in primary source file | Yang Tse | |
2010-05-31 | fix compiler warning: variable was set but never used | Yang Tse | |
2010-05-31 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2010-05-31 | fix compiler warning: external declaration in primary source file | Yang Tse | |
2010-05-31 | update year in copyright notice | Yang Tse | |
2010-05-29 | strtoofft: rename CURL_LLONG_MIN -> CURL_OFF_T_MIN | Kamil Dudka | |
... and CURL_LLONG_MAX -> CURL_OFF_T_MAX | |||
2010-05-29 | CURL_LLONG_MAX: avoid constant overflow | Kamil Dudka | |
... when (CURL_SIZEOF_CURL_OFF_T == 4) | |||
2010-05-28 | LDAPS: list availability depending on SSL's presence | Howard Chu | |
2010-05-28 | LDAP: make it build without SSL if no such support is available | Howard Chu | |
of course it also goes for the case where SSL is explicitly disabled | |||
2010-05-28 | TODO: removed fixed items | Daniel Stenberg | |
These two items are now actually implemented: 11.1 Content-Disposition 11.5 ftp wildcard download | |||
2010-05-28 | lib: eliminate 'statement not reached' warnings | Kamil Dudka | |
2010-05-28 | test1115: verify that unexpected 1xx responses work fine | Daniel Stenberg | |
2010-05-28 | lib577: avoid redefinition of ERROR | Kamil Dudka | |
2010-05-27 | test313: a new test for CRL support | Kamil Dudka | |
2010-05-27 | tests/certs: re-generated because of lost pass-phrase | Kamil Dudka | |
2010-05-27 | tests/certs/scripts: generate also CRL | Kamil Dudka | |
... and make it possible to do so without any user interaction | |||
2010-05-27 | openldap: fix compiler warnings | Howard Chu | |
2010-05-27 | indent: some whitespace edits | Daniel Stenberg | |
2010-05-27 | wildcard.c: add missing include of "setup.h" | Kamil Dudka | |
2010-05-27 | lib573: do not compare double for exact match | Tor Arntsen | |
2010-05-27 | wildcard.c: add missing include of "curl_memory.h" | Pavel Raiskup | |
2010-05-27 | setup_once: use enum type for 'bool' on non-C99 platforms | Tor Arntsen | |
An enum will catch non-bool assignments to bool on platforms with a strict compiler, e.g MIPSPro. Signed-off-by: Kamil Dudka <kdudka@redhat.com> | |||
2010-05-27 | url.c: avoid implied cast to bool | Kamil Dudka | |
2010-05-27 | curl_fnmatch: remove use of register keyword | Tor Arntsen | |
Using the 'register' keyword rarely improves anything with modern compilers and architectures. | |||
2010-05-26 | RTMP: Fix compiler warnings | Julien Chaffraix | |
2010-05-26 | OOM fixes in http_negociate.c and lib/splay.c | Julien Chaffraix | |
Fix 2 OOM errors: a missing NULL-check in lib/http_negociate.c and a potential NULL dereferencing in lib/splay.c | |||
2010-05-25 | LDAP: properly implemented as a curl_handler | Howard Chu | |
makes the LDAP code much cleaner, nicer and in general being a better libcurl citizen. If a new enough OpenLDAP version is detect, the new and shiny lib/openldap.c code is then used instead of the old cruft Code by Howard, minor cleanups by Daniel. | |||
2010-05-21 | curl_fnmatch: Use int not bool when function returns int | Tor Arntsen | |
bool in curl internals is unsigned char and should not be used to receive return value from functions returning int - this fails when using IBM VisualAge and Tru64 compilers. | |||
2010-05-21 | TFTP: send legal timeout value | Daniel Stenberg | |
Eric Mertens posted bug #3003705: when we made TFTP use the correct timeout option when sent to the server (fixed May 18th 2010) it became obvious that libcurl used invalid timeout values (300 by default while the RFC allows nothing above 255). While of course it is obvious that as TFTP has worked thus far without being able to set timeout at all, just removing the setting wouldn't make any difference in behavior. I decided to still keep it (but fix the problem) as it now actually allows for easier (future) customization of the timeout. (http://curl.haxx.se/bug/view.cgi?id=3003705) | |||
2010-05-21 | TFTP: don't ack if wrong block num is received | Daniel Stenberg | |
If an unexpected block number was received, break out of the switch loop. | |||
2010-05-21 | TFTP: block id wrap bug fix | Daniel Stenberg | |
In a normal expression, doing [unsigned short] + 1 will not wrap at 16 bits so the comparisons and outputs were done wrong. I added a macro do make sure it gets done right. Douglas Kilpatrick filed bug report #3004787 about it: http://curl.haxx.se/bug/view.cgi?id=3004787 | |||
2010-05-20 | Fix build warnings. | Ben Greear | |
Signed-off-by: Ben Greear <greearb@candelatech.com> | |||
2010-05-20 | setopt: Fix setting of set.is_fwrite_set | Ben Greear | |
Signed-off-by: Ben Greear <greearb@candelatech.com> | |||
2010-05-20 | build: allow curl to build with Microsoft VC10 | Tanguy Fautre | |
By undefing a bunch of E* defines that VC10 has started to define but that we redefine internally to their WSA* alternatives when building for Windows. | |||
2010-05-20 | Test 573: Use correct type for CURLINFO_CONNECT_TIME | Tor Arntsen | |
curl_easy_getinfo() called with a pointer to long instead of double would sigbus on RISC processors (e.g. MIPS) due to wrong alignment of pointer address. | |||
2010-05-19 | lib: Fix AIX build failure | Tor Arntsen | |
2010-05-19 | Fixed some memory leaks in the POP3 torture tests | Dan Fandrich | |
2010-05-18 | Fixed a memory leak in the SMTP torture tests | Dan Fandrich | |
2010-05-18 | TFTP: send timeout option correctly | Daniel Stenberg | |
Eric Mertens posted bug report #3003005 pointing out that the libcurl TFTP code was not sending the timeout option properly to the server, and suggested a fix. (http://curl.haxx.se/bug/view.cgi?id=3003005) | |||
2010-05-16 | lib: Change some CRLF line endings to LF | Tor Arntsen | |
An update had added a couple of lines with DOS line endings, and some compilers will choke on that (e.g. the Tru64 compiler). | |||
2010-05-16 | ftp wildcard: a new option CURLOPT_FNMATCH_DATA | Kamil Dudka | |
2010-05-15 | RMTP: the version code is now rtmp aware | Howard Chu | |
2010-05-15 | RTMP: fix wrong #ifdef | Howard Chu | |