Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-08-11 | Patrick Monnerat modified the LDAP code and approach in curl. Starting now, | Daniel Stenberg | |
the configure script checks for openldap and friends and we link with those libs just like we link all other third party libraries, and we no longer dlopen() those libraries. Our private header file lib/ldap.h was renamed to lib/curl_ldap.h due to this. I set a tag in CVS (curl-7_17_0-preldapfix) just before this commit, just in case. | |||
2007-08-07 | Fixed torture test for test 509 | Dan Fandrich | |
2007-08-07 | Fixed some icc compiler warnings. | Dan Fandrich | |
2007-08-04 | Fixed a couple of compiler warnings. | Dan Fandrich | |
2007-08-03 | Refactored CreateConnection() somewhat to reduce its length by splitting | Dan Fandrich | |
it into a few new functions. Fixed a few leaks in out of memory conditions, including for test case 231. | |||
2007-08-03 | The previous commit to force the use of libssh2-0.16 by removing | James Housley | |
LIBSSH2_APINO | |||
2007-08-02 | Scott Cantor filed bug report #1766320 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1766320) pointing out that the libcurl code accessed two curl_easy_setopt() options (CURLOPT_DNS_CACHE_TIMEOUT and CURLOPT_DNS_USE_GLOBAL_CACHE) as ints even though they're documented to be passed in as longs, and that makes a difference on 64 bit architectures. | |||
2007-08-02 | Fixed a compiler warning. | Dan Fandrich | |
2007-08-02 | Dmitriy Sergeyev reported a regression: resumed file:// transfers broke | Daniel Stenberg | |
after 7.16.2. This is much due to the different treatment file:// gets internally, but now I added test 231 to make it less likely to happen again without us noticing! | |||
2007-08-01 | Patrick Monnerat and I modified libcurl so that now it *copies* all strings | Daniel Stenberg | |
passed to it with curl_easy_setopt()! Previously it has always just refered to the data, forcing the user to keep the data around until libcurl is done with it. That is now history and libcurl will instead clone the given strings and keep private copies. | |||
2007-07-29 | Bug report #1759542 (http://curl.haxx.se/bug/view.cgi?id=1759542). A bad use | Daniel Stenberg | |
of a socket after it has been closed, when the FTP-SSL data connection is taken down. | |||
2007-07-23 | #if that should be #ifdef | Daniel Stenberg | |
2007-07-23 | Implemented only the parts of Patrick Monnerat's OS/400 patch that renamed | Dan Fandrich | |
some few internal identifiers to avoid conflicts, which could be useful on other platforms. | |||
2007-07-14 | for now unless we do better fixed LIBSSH2_APINO compares to use long constants. | Gunter Knauf | |
2007-07-12 | Shmulik Regev found an (albeit rare) case where the proxy CONNECT operation | Daniel Stenberg | |
could in fact get stuck in an endless loop. | |||
2007-07-11 | fixed endif comment. | Gunter Knauf | |
2007-07-10 | * Finish moving sftp:// into a state machine so it won't block in multi mode | James Housley | |
* Move scp:// into a state machine so it won't block in multi mode * When available use the full directory entry from the sftp:// server | |||
2007-07-01 | Thomas J. Moore provided a patch that introduces Kerberos5 support in | Daniel Stenberg | |
libcurl. This also makes the options change name to --krb (from --krb4) and CURLOPT_KRBLEVEL (from CURLOPT_KRB4LEVEL) but the old names are still | |||
2007-06-27 | Add two new options for the SFTP/SCP/FILE protocols: CURLOPT_NEW_FILE_PERMS | James Housley | |
and CURLOPT_NEW_DIRECTORY_PERMS. These control the premissions for files and directories created on the remote server. CURLOPT_NEW_FILE_PERMS defaults to 0644 and CURLOPT_NEW_DIRECTORY_PERMS defaults to 0755 | |||
2007-06-21 | Gerrit Bruchhäuser pointed out a warning that the Intel(R) Thread Checker | Daniel Stenberg | |
tool reports and it was indeed a legitimate one and it is one fixed. It was a use of a share without doing the proper locking first. | |||
2007-06-05 | mark connect failures as non-connected when ConnectPlease() fails, like when | Daniel Stenberg | |
a connection through a socks proxy doesn't work | |||
2007-05-30 | remove really annoying debug output that makes life miserable when you do | Daniel Stenberg | |
hundreds of parallel transfers... | |||
2007-05-02 | Fixed an out of memory handling issue with HTTP pipelines. | Dan Fandrich | |
2007-04-29 | Rearranged some allocs so they will be freed correctly in the error path. | Dan Fandrich | |
2007-04-27 | Move the explictit free of the range string to Curl_close() from ↵ | Daniel Stenberg | |
Curl_disconnect() since it easy-handle related and not connection-related. | |||
2007-04-27 | oops, this was supposed to be properly removed | Daniel Stenberg | |
2007-04-27 | As a follow-up to the removal of the free of the range data in Curl_done() - ↵ | Daniel Stenberg | |
this moves and re-arranges how range/resume is setup and freed. | |||
2007-04-25 | Sonia Subramanian brought our attention to a problem that happens if you set | Daniel Stenberg | |
the CURLOPT_RESUME_FROM or CURLOPT_RANGE options and an existing connection in the connection cache is closed to make room for the new one when you call curl_easy_perform(). It would then wrongly free range-related data in the connection close funtion. | |||
2007-04-24 | Robert Iakobashvili made the 'master_buffer' get allocated first once it is | Daniel Stenberg | |
can/will be used as it then makes the common cases save 16KB of data for each easy handle that isn't used for pipelining. | |||
2007-04-10 | Ravi Pratap provided fixes for HTTP pipelining | Daniel Stenberg | |
2007-04-08 | fix out of memory handling issue | Yang Tse | |
2007-04-04 | Fixes some more out of memory handling bugs. | Dan Fandrich | |
2007-04-03 | Rob Jones fixed better #ifdef'ing for a bunch of #include lines. | Daniel Stenberg | |
2007-04-03 | recover code simplification lost with last commit | Yang Tse | |
2007-03-29 | fix compiler warning | Yang Tse | |
2007-03-28 | fix compiler warning | Yang Tse | |
2007-03-28 | Fix compiler warning. | Gisle Vanem | |
2007-03-28 | Simplified code around 'tld_errmsg' a bit. | Gisle Vanem | |
2007-03-26 | Internal function Curl_select() renamed to Curl_socket_ready() | Yang Tse | |
2007-03-25 | fix compiler warning | Yang Tse | |
2007-03-25 | fix compiler warning | Yang Tse | |
2007-03-24 | Fixed a couple of compile problems. | Dan Fandrich | |
2007-03-24 | Fixed a memory leak when specifying a proxy with a file: URL and added | Dan Fandrich | |
test case 288 to verify it. | |||
2007-03-23 | fix debug message | Daniel Stenberg | |
2007-03-11 | can just as well NULLify the pointer in a single spot | Daniel Stenberg | |
2007-03-10 | Eygene Ryabinkin fixed a use-after-free issue with HTTP transfers with the | Daniel Stenberg | |
multi interface | |||
2007-03-07 | Honour --ftp-ssl-control on ftps:// URLs to allow encrypted control and | Dan Fandrich | |
unencrypted data connections. | |||
2007-02-27 | - Hang Kin Lau found and fixed: When I use libcurl to connect to an https | Daniel Stenberg | |
server through a proxy and have the remote https server port set using the CURLOPT_PORT option, protocol gets reset to http from https after the first request. User defined URL was modified internally by libcurl and subsequent reuse of the easy handle may lead to connection using a different protocol (if not originally http). I found that libcurl hardcoded the protocol to "http" when it tries to regenerate the URL if CURLOPT_PORT is set. I tried to fix the problem as follows and it's working fine so far | |||
2007-02-26 | Removed inclusion of <sys/types.h> and <sys/stat.h> in .c-files | Gisle Vanem | |
since they're already included through "setup.h". | |||
2007-02-22 | compiler warning fix | Yang Tse | |