Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-05 | getinfo: added *_PRIMARY_PORT, *_LOCAL_IP and *_LOCAL_PORT | Frank Meier | |
2010-06-04 | RELEASE-NOTES: add contributors not mentioned | Daniel Stenberg | |
2010-06-04 | Enable OpenLDAP support for cygwin builds. | Yang Tse | |
Enable OpenLDAP support for cygwin builds. This support was disabled back in 2008 due to incompatibilities between OpenSSL and OpenLDAP headers. cygwin's OpenSSL 0.9.8l and OpenLDAP 2.3.43 versions on cygwin 1.5.25 allow building an OpenLDAP enabled libcurl supporting back to Windows 95. Remove non-functional CURL_LDAP_HYBRID code and references. | |||
2010-06-02 | ftplistparser.c: oops, fix typo in the last commit | Kamil Dudka | |
2010-06-02 | ftplistparser.c: avoid some invalid dereferences | Kamil Dudka | |
2010-06-02 | lib: eliminate some dead code | Kamil Dudka | |
2010-06-02 | SSH: corrected the inability to respect the timeout | Daniel Stenberg | |
Jason McDonald posted bug report #3006786 when he found that the SFTP code didn't timeout properly in several places in the code even if a timeout was set properly. Based on his suggested patch, I wrote a different implementation that I think addressed the issue better and also uses the connect timeout for the initial part of the SSH/SFTP done during the "protocol connect" phase. (http://curl.haxx.se/bug/view.cgi?id=3006786) | |||
2010-06-02 | mention last changes | Yang Tse | |
2010-06-02 | add missing new files to non-configure target build files | Yang Tse | |
2010-06-02 | include libcurl standard internal headers | Yang Tse | |
2010-06-02 | TODO: add multi interface improvement remove ldap select | Daniel Stenberg | |
2010-06-02 | make setup.h first included file | Yang Tse | |
2010-06-02 | fix spnego memory leak | Yang Tse | |
2010-06-02 | openldap header inclusions fix | Yang Tse | |
2010-06-01 | multi_socket: handles timer inaccuracy better for timeouts | Daniel Stenberg | |
Igor Novoseltsev reported a problem with the multi socket API and using timeouts and timers. It boiled down to a problem with libcurl's use of GetTickCount() interally to figure out the current time, while Igor's own application code used another function call. It made his app call the socket API timeout function a bit _before_ libcurl would consider the timeout to trigger, and that could easily lead to timeouts or stalls in the app. It seems GetTickCount() in general often has no better resolution than 16ms and switching to the alternative function QueryPerformanceCounter has its share of problems: http://www.virtualdub.org/blog/pivot/entry.php?id=106 We address this problem by simply having libcurl treat timers that already has occured or will occur within 40ms subject for treatment. I'm confident that there are other implementations and operating systems with similarly in accurate timer functions so it makes sense to have applied generically and I don't believe we sacrifice much by adding a 40ms inaccuracy on these timeouts. | |||
2010-06-01 | fix ldaps option issue | Yang Tse | |
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. |