Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
2004-04-21 | Fix the "lingering close" problem when re-using a connection, as test case | Daniel 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-21 | increase the headerbytecount for incoming "headers" | Daniel Stenberg | |
2004-04-20 | cleanup leftovers | Daniel Stenberg | |
2004-04-20 | Cleaned up hostname/name/gname and path/ppath confusion. Removed the fixed- | Daniel Stenberg | |
length limit of the hostname part of the URL. | |||
2004-04-19 | Gisle Vanem corrected a mistake in a recent progress fix | Daniel Stenberg | |
2004-04-17 | Gisle made a failed connect output the reason for it | Daniel Stenberg | |
2004-04-17 | NDEBUG should not be defined when CURLDEBUG is | Daniel Stenberg | |
2004-04-15 | ftp->dirs[] is no longer terminated with a zero entry but ftp->dirdepth | Daniel Stenberg | |
should be used | |||
2004-04-15 | removed the fixed dir depth limit in the FTP code | Daniel Stenberg | |
2004-04-14 | asking for CURL_IPRESOLVE_V6 when ipv6 addresses can't be resolved will | Daniel Stenberg | |
now cause the resolve function to return NULL immediately | |||
2004-04-14 | Curl_wait_for_resolv() could hang due to the bad timeout timer resolution and | Daniel Stenberg | |
some bad thinking on my part. | |||
2004-04-13 | Gisle Vanem's fix that makes the multi interface work on Windows again even | Daniel Stenberg | |
when not using ares. |