Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-05 | Gisle fixed: don't reference 'mem' if it's NULL. | Daniel Stenberg | |
2004-05-05 | initiate variables properly to default to no auth for server and proxy | Daniel Stenberg | |
2004-05-05 | made the progress meter display not overflow even if _very_ large files | Daniel Stenberg | |
are transfered. The maximum size we support now is 8 exabytes, which equals to 8192 petabytes... | |||
2004-05-05 | if the values allow it, avoid floting point math for the current speed | Daniel Stenberg | |
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 | 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-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 | 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 | 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 | updated with more and new info | Daniel Stenberg | |
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 | oops, a bad strtok() was fixed by Luca | Daniel Stenberg | |
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 | encode the correct name | Daniel Stenberg | |
2004-04-29 | curl_easy_duphandle() works again with ares enabled | Daniel Stenberg | |
2004-04-29 | Luca Altea's major HTTP Digest update | Daniel Stenberg | |
2004-04-29 | Gisle made the code use ERR_error_string_n() | Daniel Stenberg | |
2004-04-28 | the new way of accessing the host name | Daniel Stenberg | |
2004-04-27 | IDN: Gisle Vanem made the win32 version handle a missing CHARSET environment | Daniel Stenberg | |
and then figure it out with a suitable windows call. | |||
2004-04-27 | outputed elsewhere already | Daniel Stenberg | |
2004-04-27 | provide our own inet_ntoa_r() proto if the system has none on its own | Daniel Stenberg | |
2004-04-27 | Made host name and proxy name get stored in a 'struct hostname' and set | Daniel Stenberg | |
all things up to work with encoded host names internally, as well as keeping 'display names' to show in debug messages. IDN resolves work for me now using ipv6, ipv4 and ares resolving. Even cookies on IDN sites seem to do right. | |||
2004-04-26 | oops, .obj not .c! | Daniel Stenberg | |
2004-04-26 | made the verbose connect use the proper host name string even when using | Daniel Stenberg | |
a proxy | |||
2004-04-26 | NI_MAXHOST is not generally available, we use plain 256 bytes for the hostname | Daniel Stenberg | |
instead, its only for debug verbose output anyway | |||
2004-04-26 | corrected mistake | Daniel Stenberg | |
2004-04-26 | Gisle fixed a mistaken check | Daniel Stenberg | |
2004-04-26 | Made defines instead of plain numbers for the Curl_resolv() return code to | Daniel Stenberg | |
make the code easier to read | |||
2004-04-26 | IDN adjustments and host cleanups by Gisle | Daniel Stenberg | |
2004-04-26 | no longer include curl/types.h, it serves no purpose | Daniel Stenberg | |
2004-04-26 | ignore the curl/types.h header file | Daniel Stenberg | |
2004-04-26 | added the new files to the build | Daniel Stenberg | |
2004-04-26 | Curl_ip2addr() now takes an in_addr_t argument instead to prevent compiler | Daniel Stenberg | |
warnings | |||
2004-04-26 | removed assignment of variable never used | Daniel Stenberg | |
2004-04-26 | Tor Arntsen fixed a 'Statement not reachable'-warning | Daniel Stenberg | |
2004-04-26 | TommyTam made a patch to handle stdin redirection for win32. | Daniel Stenberg | |
2004-04-26 | Major hostip.c cleanup and split into multiple files and easier #ifdef | Daniel Stenberg | |
usage. | |||
2004-04-26 | added libidn awareness | Daniel Stenberg | |
2004-04-26 | added many comments | Daniel Stenberg | |
2004-04-26 | major update of the error strings | Daniel Stenberg | |
2004-04-26 | added comments | Daniel Stenberg | |
2004-04-26 | added function headers and comments | Daniel Stenberg | |