Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-09-06 | two new CONNECT response problems that have appeared | Daniel Stenberg | |
2007-09-05 | Minix doesn't support getsockopt on UDP sockets or send/recv on TCP | Dan Fandrich | |
sockets. | |||
2007-09-05 | Curl_GetFTPResponse() now checks and properly deals with the fact that the | Daniel Stenberg | |
underlying ftp_readresp() function has a separate "cache" where there might in fact be leftover data... | |||
2007-09-05 | Minix doesn't support getsockopt on UDP sockets or send/recv on TCP | Dan Fandrich | |
sockets. | |||
2007-09-05 | Minor updates | Dan Fandrich | |
2007-09-03 | I can't spell | Daniel Stenberg | |
2007-09-03 | curlpp 0.7.1 was relased | Daniel Stenberg | |
2007-09-03 | added some comments for MingW32 builds. | Gunter Knauf | |
2007-09-01 | bash is not required when compiling under Minix | Dan Fandrich | |
2007-08-31 | Renamed the CURLE_FTP_SSL_FAILED error code to CURLE_USE_SSL_FAILED. | Dan Fandrich | |
Renamed the curl_ftpssl enum to curl_usessl and its enumerated constants, creating macros for backward compatibility. | |||
2007-08-31 | Made some of the error strings returned by the *strerror functions more | Dan Fandrich | |
generic, and more consistent with each other. | |||
2007-08-31 | Fixed an invalid returned error code added in my last submission. | Dan Fandrich | |
2007-08-30 | Added more accurate error code returns from SFTP operations. Added test | Dan Fandrich | |
case 615 to test an SFTP upload failure. | |||
2007-08-30 | Renamed several libcurl error codes and options to make them more general | Dan Fandrich | |
and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3) | |||
2007-08-30 | added --enable-ldaps switch; | Gunter Knauf | |
renamed LDAP(S) messages from 'yes' to 'enabled'. | |||
2007-08-30 | Fixed a few compiler warnings. Try to do a slightly better job of | Dan Fandrich | |
cleaning up after an OOM condition in curl_multi_add_handle | |||
2007-08-30 | Made Curl_GetFTPResponse() use lots less code and instead use the proper | Daniel Stenberg | |
low-level ftp_readresp() function. Hopefully adressing bug #1779054. | |||
2007-08-29 | Added lots of consts | Dan Fandrich | |
2007-08-28 | Mention that 'make test' does more than just run all the tests (suggested | Dan Fandrich | |
by Kris/tinker105 in bug #1779054) and mention the torture tests. | |||
2007-08-27 | Fixed some minor type mismatches and missing consts mainly found by splint. | Dan Fandrich | |
2007-08-26 | Fixed some minor mismatched types found by splint. | Dan Fandrich | |
2007-08-25 | bail out with error if someone tries to use another cert than PEM with OpenLDAP. | Gunter Knauf | |
2007-08-25 | only link with -lwldap32 if we dont use other LDAP SDKs. | Gunter Knauf | |
2007-08-24 | added defines to build with OpenLDAP. | Gunter Knauf | |
2007-08-24 | Adding DOCS file in OS400 installation library with license and various ↵ | Patrick Monnerat | |
other documentation text files. Setting character set of OS400 installed source components | |||
2007-08-24 | Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed | Daniel Stenberg | |
out that libcurl didn't deal with large responses from server commands, when the single response was consisting of multiple lines but of a total size of 16KB or more. Dan Fandrich improved the ftp test script and provided test case 1006 to repeat the problem, and I fixed the code to make sure this new test case runs fine. | |||
2007-08-24 | Remove leading space in curl_version_info ss_version field. | Patrick Monnerat | |
2007-08-23 | Added test case 1005 to test excessively-long replies spread out over | Dan Fandrich | |
multiple lines (similar to test case 1003). | |||
2007-08-23 | Allow ftp server alternate replies to contain backslash-escaped control | Dan Fandrich | |
characters. | |||
2007-08-23 | Make ldap.h, gssapi.h and qsossl.h inclusions conditional. | Patrick Monnerat | |
2007-08-23 | Need even more time to wait for an accept. | Dan Fandrich | |
2007-08-23 | Added test1004 to validate a previous fix for a memory leak when an | Dan Fandrich | |
empty proxy server is selected. | |||
2007-08-23 | Mention OS/400 and TPF | Dan Fandrich | |
2007-08-23 | ported to OS/400 | Daniel Stenberg | |
2007-08-23 | added the two new os400 files | Daniel Stenberg | |
2007-08-23 | Add the files in the OS400 dir to the dist. I didn't add it as a new subdir | Daniel Stenberg | |
just because if I do that automake does funny things automatically with the makefile.sh file in that directory and thus doing it this way was a quick work-around that annoyance! | |||
2007-08-23 | --libcurl does not support -F | Daniel Stenberg | |
2007-08-23 | Porting library to OS/400 | Patrick Monnerat | |
2007-08-23 | added support for CA cert verification; | Gunter Knauf | |
default now to verify cert unless data->set.ssl.verifypeer is 0. | |||
2007-08-22 | Bug report #1779751 (http://curl.haxx.se/bug/view.cgi?id=1779751) pointed | Daniel Stenberg | |
out that doing first a file:// upload and then an FTP upload crashed libcurl or at best caused furious valgrind complaints. Fixed now by making sure we free and clear the file-specific struct properly when done with it. | |||
2007-08-22 | Reversed the 'HAVE_LDAP_URL_PARSE' ifdef statement. | Gisle Vanem | |
2007-08-22 | Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed | Daniel Stenberg | |
out that libcurl didn't deal with very long (>16K) FTP server response lines properly. Starting now, libcurl will chop them off (thus the client app will not get the full line) but survive and deal with them fine otherwise. Test case 1003 was added to verify this. | |||
2007-08-22 | added a size > buffer size check to make it easier to track this in the | Daniel Stenberg | |
future | |||
2007-08-22 | Upped the buffer size to 17000+ bytes to prepare for the upcoming test 1003 | Daniel Stenberg | |
that verfies ridiculously long server response lines. Also changed sprintf to snprintf in a few places. | |||
2007-08-22 | 1) the talk about strings used by libcurl doesn't apply to libcurl >= 7.17.0 | Daniel Stenberg | |
2) added nroff header | |||
2007-08-22 | for now comment the tls_start section... | Gunter Knauf | |
2007-08-21 | sync libssh2 paths with comments. | Gunter Knauf | |
2007-08-21 | added targets to create the files missing in CVS which makes calling ↵ | Gunter Knauf | |
buildconf.bat obsolete; removed obsolete wsock32 link lib. | |||
2007-08-20 | fixed wrong CLAGS define. | Gunter Knauf | |
2007-08-20 | fixed warning with unused var; | Gunter Knauf | |
removed now obsolete defines since we include now ldap headers which define these. |