aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2004-05-04General HTTP authentication cleanup and fixesDaniel Stenberg
2004-05-03Gisle fixed the problem with ldap_search_s() fails with "filter error": a caseDaniel Stenberg
of using 'lud_filter' after freeing 'lud_dn'.
2004-05-03Gisle 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-30updated with more and new infoDaniel Stenberg
2004-04-30New 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-30oops, a bad strtok() was fixed by LucaDaniel Stenberg
2004-04-29fixed the host/proxy name issue when re-using a connection and made IDN namesDaniel 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-29encode the correct nameDaniel Stenberg
2004-04-29curl_easy_duphandle() works again with ares enabledDaniel Stenberg
2004-04-29Luca Altea's major HTTP Digest updateDaniel Stenberg
2004-04-29Gisle made the code use ERR_error_string_n()Daniel Stenberg
2004-04-28the new way of accessing the host nameDaniel Stenberg
2004-04-27IDN: Gisle Vanem made the win32 version handle a missing CHARSET environmentDaniel Stenberg
and then figure it out with a suitable windows call.
2004-04-27outputed elsewhere alreadyDaniel Stenberg
2004-04-27provide our own inet_ntoa_r() proto if the system has none on its ownDaniel Stenberg
2004-04-27Made host name and proxy name get stored in a 'struct hostname' and setDaniel 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-26oops, .obj not .c!Daniel Stenberg
2004-04-26made the verbose connect use the proper host name string even when usingDaniel Stenberg
a proxy
2004-04-26NI_MAXHOST is not generally available, we use plain 256 bytes for the hostnameDaniel Stenberg
instead, its only for debug verbose output anyway
2004-04-26corrected mistakeDaniel Stenberg
2004-04-26Gisle fixed a mistaken checkDaniel Stenberg
2004-04-26Made defines instead of plain numbers for the Curl_resolv() return code toDaniel Stenberg
make the code easier to read
2004-04-26IDN adjustments and host cleanups by GisleDaniel Stenberg
2004-04-26no longer include curl/types.h, it serves no purposeDaniel Stenberg
2004-04-26ignore the curl/types.h header fileDaniel Stenberg
2004-04-26added the new files to the buildDaniel Stenberg
2004-04-26Curl_ip2addr() now takes an in_addr_t argument instead to prevent compilerDaniel Stenberg
warnings
2004-04-26removed assignment of variable never usedDaniel Stenberg
2004-04-26Tor Arntsen fixed a 'Statement not reachable'-warningDaniel Stenberg
2004-04-26TommyTam made a patch to handle stdin redirection for win32.Daniel Stenberg
2004-04-26Major hostip.c cleanup and split into multiple files and easier #ifdefDaniel Stenberg
usage.
2004-04-26added libidn awarenessDaniel Stenberg
2004-04-26added many commentsDaniel Stenberg
2004-04-26major update of the error stringsDaniel Stenberg
2004-04-26added commentsDaniel Stenberg
2004-04-26added function headers and commentsDaniel Stenberg
2004-04-23 Gisle Vanem found and fixed a memory leak when doing (failing) WindowsDaniel Stenberg
threaded name resolves.
2004-04-23only a minor comment/format changeDaniel Stenberg
2004-04-23Replaced Curl_FormReadOneLine with Curl_formpostheader as that is the only useDaniel Stenberg
for it. It saves one extra copy of the header. I also added comments for several functions in formdata.c
2004-04-22missing braceDaniel Stenberg
2004-04-22- David Byron found and fixed a small bug with the --fail and authenticationDaniel 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-22removed Curl_ftp_quit() as it was turned into a static in ftp.cDaniel Stenberg
2004-04-22If only a partial file was transfered, we consider that a fatal problem soDaniel 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-22Added commentsDaniel Stenberg
2004-04-21include unistd.h as well for the close() proto on some platforms (like Tru64)Daniel Stenberg
2004-04-21typecast the tolower() argument to an int to prevent compiler warningDaniel Stenberg
2004-04-21typecast tolower/toupper arguments to int to make picky compilers complainDaniel Stenberg
less
2004-04-21Fix the "lingering close" problem when re-using a connection, as test caseDaniel Stenberg
160 shows. We got no data and we attempted to re-use a connection. This might happen if the connection was left alive when we were done using it before, but that was closed when we wanted to read from it again. Bad luck. Retry the same request on a fresh connect! Deleted the sockerror variable again, it serves no purpose anymore.
2004-04-21increase the headerbytecount for incoming "headers"Daniel Stenberg
2004-04-20cleanup leftoversDaniel Stenberg