Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-05 | do the alarm time-left math using unsigned longs since that is what alarm() | Daniel Stenberg | |
returns and uses as input and converting to signed generates warnings and actually risks loss of accuracy | |||
2004-05-05 | fix_hostname() now (void)s the conn argument to prevent warnings on non-idn | Daniel Stenberg | |
enabled builds | |||
2004-05-05 | ERR_error_string() returns an unsigned long so we should use one of those | Daniel Stenberg | |
for the return code | |||
2004-05-05 | gcc 3.4 now uses the -Wunreachable-code option, I believe we can make older | Daniel Stenberg | |
ones use this too... | |||
2004-05-05 | check the size of size_t for lib/mprintf.c | Daniel Stenberg | |
2004-05-05 | prevent warnings when using the gcc option -Wunreachable-code | Daniel Stenberg | |
2004-05-05 | make the memlimit final NULL return get written to stderr as wella | Daniel Stenberg | |
2004-05-05 | mention the LICENSE-MIXING document | Daniel Stenberg | |
2004-05-05 | minor update edits | Daniel Stenberg | |
2004-05-05 | added a third URL to the torture testing, this one also hangs at some point | Daniel Stenberg | |
for a reason I don't know | |||
2004-05-04 | multipart formposts should be more streamy | Daniel Stenberg | |
2004-05-04 | bail out when an add_buffer() function returns failure | Daniel Stenberg | |
2004-05-04 | improved the cleaning up of memory when we fail to resolve names due to | Daniel Stenberg | |
out of memory (thanks to 'runtests.pl -t') | |||
2004-05-04 | check malloc() return code | Daniel Stenberg | |
2004-05-04 | removed more leftovers from the formparse function | Daniel Stenberg | |
2004-05-04 | removed curl_formparse() from the library | Daniel Stenberg | |
2004-05-04 | Gisle made item 38, now there's only one low-prio task left... | Daniel Stenberg | |
2004-05-04 | General HTTP authentication cleanup and fixes | Daniel Stenberg | |
2004-05-03 | Gisle fixed the problem with ldap_search_s() fails with "filter error": a case | Daniel Stenberg | |
of using 'lud_filter' after freeing 'lud_dn'. | |||
2004-05-03 | improved the name of the test | Daniel Stenberg | |
2004-05-03 | Added --proxy-digest, added the standard curl source header to this file. | Daniel Stenberg | |
2004-05-03 | fixed the pdf and html for the strerror functions | Daniel Stenberg | |
2004-05-03 | Added support for --proxy-digest | Daniel Stenberg | |
2004-05-03 | don't free(NULL) | Daniel Stenberg | |
2004-05-03 | Gisle Vanem: | Daniel Stenberg | |
Patch for ldap.c under Windows. It works with wldap32.dll as supplied with Win-98/ME/2000/XP, so no extra .dlls are required. I've mostly tested it against Verisign's ldap server. Added code in the case there are to many responses (rc = LDAP_SIZELIMIT_EXCEEDED) and print only those we got. E.g. curl ldap://directory.verisign.net/?cn,display-name,mail,info?subtree?(cn=*Nelson*) will print the first 10 results. My only problem with it is that ldap_search_s() fails with "filter error" when CURLDEBUG is defined ?! Maybe someone can spot the error. | |||
2004-04-30 | mucho | Daniel Stenberg | |
2004-04-30 | Display "exit OK" when the exit code has been verified to be OK, and added | Daniel Stenberg | |
initial basic valgrind-log scan for memory leaks it could detect. | |||
2004-04-30 | deprecated functions | Daniel Stenberg | |
2004-04-30 | 25 and 37 are now done, only two low-prio tasks left for the 7.12 release | Daniel Stenberg | |
2004-04-30 | recent changes | Daniel Stenberg | |
2004-04-30 | updated with more and new info | Daniel Stenberg | |
2004-04-30 | these functions are marked to get removed from the public API "soon" | Daniel Stenberg | |
2004-04-30 | use the new lib/curlx.h header and modified the code to use all to-become- | Daniel Stenberg | |
curlx_-functions with the new prefix to prepare this code for the future removal of several curl_-functions from the public libcurl API. | |||
2004-04-30 | New header file that offers easy access to the curlx_ functions for an app. | Daniel Stenberg | |
curlx_ functions are NOT part of the offical API, but only available as source code functions from the lib directory in case of need. | |||
2004-04-30 | support the new libcurl IDN feature, also a first attempt to display a stack | Daniel Stenberg | |
trace if a test results in a 'core' file and gdb is present | |||
2004-04-30 | idn is a new feature that can be made required for a test | Daniel Stenberg | |
2004-04-30 | added test 166, formpost with white space in file name | Daniel Stenberg | |
2004-04-30 | make the contents able to be any data, the previous stopped at white space | Daniel Stenberg | |
2004-04-30 | oops, a bad strtok() was fixed by Luca | Daniel Stenberg | |
2004-04-30 | include the full size of the sent response in the log | Daniel Stenberg | |
2004-04-29 | Gisle fixed the counting of calloc()s | Daniel Stenberg | |
2004-04-29 | Introducing IDN host name testing. Test case 165 requires an IDN-capable | Daniel Stenberg | |
libcurl. | |||
2004-04-29 | fixed the host/proxy name issue when re-using a connection and made IDN names | Daniel Stenberg | |
work when using proxy by converting the IDN-name to the ACE-encoded version before the request-URL is passed to the proxy. | |||
2004-04-29 | remove newline from matching pattern | Daniel Stenberg | |
2004-04-29 | ignore cnonce lines too as they are based on the current time and will differ | Daniel Stenberg | |
from time to time! | |||
2004-04-29 | encode the correct name | Daniel Stenberg | |
2004-04-29 | curl_easy_duphandle() works again with ares enabled | Daniel Stenberg | |
2004-04-29 | test 512 does some basic curl_easy_duphandle() testing | Daniel Stenberg | |
2004-04-29 | new test case for a simple curl_easy_duphandle() test | Daniel Stenberg | |
2004-04-29 | updated to work with the new Digest code | Daniel Stenberg | |