Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-06-22 | Moved the "About to connect() to" text to the place where the host name is | Daniel Stenberg | |
actually known, as before this text lied when used in i.e FTP. | |||
2004-06-22 | Gisle fixed the wildcard checks for certificates. | Daniel Stenberg | |
2004-06-22 | Gunter's fix to avoid the notorious YYSTACK_USE_ALLOCA warning we get on | Daniel Stenberg | |
several platforms/compilers/yacc versions. | |||
2004-06-22 | pass an int pointer when it expects an int pointer... | Daniel Stenberg | |
2004-06-21 | The read callback can now return CURL_READFUNC_ABORT to stop a transfer. | Daniel Stenberg | |
2004-06-21 | typecasts to prevent compiler warnings | Daniel Stenberg | |
2004-06-19 | When doing auth negotiations or authprobing, we only consider HTTP code | Daniel Stenberg | |
<300 to be good. | |||
2004-06-19 | prevent compiler warning | Daniel Stenberg | |
2004-06-18 | Gisle's "SSL patch" from June 16th 2004, modified by me as discussed on the | Daniel Stenberg | |
mailing list. | |||
2004-06-18 | With David Byron's test server I could repeat his problem and make sure that | Daniel Stenberg | |
POSTing over HTTPS:// with NTLM works fine now. There was a general problem with multi-pass authentication with non-GET operations with CONNECT. | |||
2004-06-16 | Keep the upload byte counter in an curl_off_t, not an int. 32bits is not | Daniel Stenberg | |
enough. This is most likely the bug Jean-Louis Lemaire reported that makes 2GB FTP uploads to report error when completed. Also padded comments to get them aligned again, only for visibility. | |||
2004-06-16 | Alexander Krasnostavsky fixed a flaw in the 3rd party transfer code that | Daniel Stenberg | |
didn't properly check return code. | |||
2004-06-15 | Fix the auth code to enable us to i.e set DIGEST and then find out that the | Daniel Stenberg | |
server doesn't require any auth at all and then we just continue nicely. We now have an extra bit in the connection struct named 'authprobe' that is TRUE when doing pure "HTTP authentication probing". | |||
2004-06-14 | we actually build and run fine with libidn 0.4.1 too, so let's not require | Daniel Stenberg | |
anything newer than that | |||
2004-06-14 | Allow formposting of files larger than what fits in memory by not reading the | Daniel Stenberg | |
file until it is actually being uploaded. Make sure we build and still work with HTTP disabled - the SSL code might use the boundary string for some random seeding. | |||
2004-06-13 | moved default: in a switch case to prevent compiler warning that 'request' | Daniel Stenberg | |
might be used uninitialized | |||
2004-06-13 | provide curl_formfree() even when http is disabled, it does nothing then | Daniel Stenberg | |
2004-06-13 | use Curl_strcasestr() when checking wildcard cert names | Daniel Stenberg | |
2004-06-13 | added Curl_strcasestr() for case insensitive strstr() searching | Daniel Stenberg | |
2004-06-11 | removed unused include path. | Gunter Knauf | |
2004-06-11 | fixed xdc generation, added lib target, load curl.nlm into ring3 by default. | Gunter Knauf | |
2004-06-11 | some more makefile changes. | Gunter Knauf | |
2004-06-11 | some more makefile changes. | Gunter Knauf | |
2004-06-10 | cosmetic correction. | Gunter Knauf | |
2004-06-10 | converted to UNIX format. | Gunter Knauf | |
2004-06-10 | minor output fix. | Gunter Knauf | |
2004-06-10 | added generation of missing files. | Gunter Knauf | |
2004-06-10 | make include path overridable. | Gunter Knauf | |
2004-06-10 | removed trailing whitespace | Daniel Stenberg | |
2004-06-10 | Gisle corrected two comments | Daniel Stenberg | |
2004-06-10 | Gisle Vanem's improved verbose output and timeout handling when connecting to | Daniel Stenberg | |
a host name that resolves to multiple IP addresses. | |||
2004-06-10 | build again with disabled http | Daniel Stenberg | |
2004-06-10 | Steven Bazyl and Seshubabu Pasam pointed out a bug on win32 when freeing the | Daniel Stenberg | |
path after a transfer. | |||
2004-06-09 | Alexander Krasnostavsky's fix to make libcurl build fine with configure | Daniel Stenberg | |
--disable-http, which thus builds a libcurl without HTTP support. | |||
2004-06-09 | when built with HTTP disabled, provide a curl_formadd() function anyway to | Daniel Stenberg | |
keep the API complete at all times | |||
2004-06-09 | when producing curllib.dsp, include libcurl.def as a source file. | Daniel Stenberg | |
An Alexander Krasnostavsky fix. | |||
2004-06-09 | added the new source files. | Gunter Knauf | |
2004-06-09 | corrected copyright. | Gunter Knauf | |
2004-06-08 | corrected defines. | Gunter Knauf | |
2004-06-08 | delete trailing whitespace | Daniel Stenberg | |
2004-06-08 | converted to UNIX format. | Gunter Knauf | |
2004-06-07 | prevent compiler warning with picky compilers | Daniel Stenberg | |
2004-06-07 | When sending info about which host that sends what, include proper direction | Daniel Stenberg | |
to/from, based on a suggestion from Alexander Krasnostavsky | |||
2004-06-04 | Günter Knauf's netware build fixes | Daniel Stenberg | |
2004-06-03 | updated a comment | Daniel Stenberg | |
2004-06-03 | deleted trailing whitespace | Daniel Stenberg | |
2004-06-03 | Alexander Krasnostavsky's FTP third party transfer (proxy) support | Daniel Stenberg | |
2004-06-03 | Vincent Bronner made the code use the correct user name + password when | Daniel Stenberg | |
doing proxy authentication. | |||
2004-06-02 | very minor format edit | Daniel Stenberg | |
2004-06-02 | Made CURLOPT_UPLOAD and CURLOPT_PUT mean the same thing internally (the | Daniel Stenberg | |
previous difference was not clear nor documented properly). They can now both be used interchangeably, but we prefer UPLOAD to PUT since it is a more generic term. |