Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2004-04-23 | Gisle Vanem found and fixed a memory leak when doing (failing) Windows | Daniel Stenberg | |
threaded name resolves. | |||
2004-04-23 | only a minor comment/format change | Daniel Stenberg | |
2004-04-23 | Replaced Curl_FormReadOneLine with Curl_formpostheader as that is the only use | Daniel Stenberg | |
for it. It saves one extra copy of the header. I also added comments for several functions in formdata.c | |||
2004-04-22 | missing brace | Daniel Stenberg | |
2004-04-22 | - David Byron found and fixed a small bug with the --fail and authentication | Daniel Stenberg | |
stuff added a few weeks ago. Turns out that if you specify --proxy-ntlm and communicate with a proxy that requires basic authentication, the proxy properly returns a 407, but the failure detection code doesn't realize it should give up, so curl returns with exit code 0. Test case 162 verifies this. | |||
2004-04-22 | removed Curl_ftp_quit() as it was turned into a static in ftp.c | Daniel Stenberg | |
2004-04-22 | If only a partial file was transfered, we consider that a fatal problem so | Daniel Stenberg | |
we won't try to QUIT the control connection and risk "hanging" waiting for a response. Test case 161 verifies this. The quit-sending function was also made static. | |||
2004-04-22 | Added comments | Daniel Stenberg | |
2004-04-21 | include unistd.h as well for the close() proto on some platforms (like Tru64) | Daniel Stenberg | |
2004-04-21 | typecast the tolower() argument to an int to prevent compiler warning | Daniel Stenberg | |
2004-04-21 | typecast tolower/toupper arguments to int to make picky compilers complain | Daniel Stenberg | |
less |