Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-09-16 | Added CURLOPT_FTPSSLAUTH | Daniel Stenberg | |
2004-09-16 | Location: problem with bad original URL, identified in bug report #1029478 | Daniel Stenberg | |
2004-09-15 | fixed to use the new file. Can we make this use Makefile.inc somehow? | Daniel Stenberg | |
2004-09-15 | Replaced the former date parser with a rewrite. No more yacc/bison needed. | Daniel Stenberg | |
2004-09-13 | and moved back the month array to a static one since the ftp code won't need | Daniel Stenberg | |
it anymore | |||
2004-09-13 | removed this file again, we only provide a single public function and that | Daniel Stenberg | |
is already in the public header file | |||
2004-09-13 | no longer includes getdate.h, there's no need for it | Daniel Stenberg | |
2004-09-13 | getdate.h is not required to include, it adds nothing new | Daniel Stenberg | |
2004-09-13 | revert the change for the new date parser, as the new one can deal with | Daniel Stenberg | |
the old format now | |||
2004-09-13 | support for YYYYMMDD added, which allows us to keep using the lib/ftp.c code | Daniel Stenberg | |
I was previously #ifdef'ing to a different look when this parser is used | |||
2004-09-13 | added more examples/docs in the top comment | Daniel Stenberg | |
2004-09-13 | Since many users probably already use local time strings as input, I now | Daniel Stenberg | |
made it deal with named time zones as well as mail-style +0200 ones. Seems to work fine. I'm comparing with GNU date command: date -d [date] -u +%s | |||
2004-09-11 | Minor adjustment needed for the new date parser to succeed. ifdef'ed out | Daniel Stenberg | |
for now. | |||
2004-09-11 | more docs and fixed the delta compared to GMT that prevented test case 141 to | Daniel Stenberg | |
work with this | |||
2004-09-11 | slightly better but still lacks | Daniel Stenberg | |
2004-09-11 | getdate replacement code. smaller, slicker, faster. | Daniel Stenberg | |
2004-09-10 | - Bug report #1025986. When following a Location: with a custom Host: header | Daniel Stenberg | |
replacement, curl only replaced the Host: header on the initial request and didn't replace it on the following ones. This resulted in requests with two Host: headers. Now, curl checks if the location is on the same host as the initial request and then continues to replace the Host: header. And when it moves to another host, it doesn't replace the Host: header but it also doesn't make the second Host: header get used in the request. This change is verified by the two new test cases 184 and 185. | |||
2004-09-03 | fixed nasty warnings with gcc 3.3. | Gunter Knauf | |
2004-09-02 | improved error message when client cert return failure | Daniel Stenberg | |
2004-08-31 | fix the return code for curl_multi_add_handle() | Daniel Stenberg | |
2004-08-30 | Make "Proxy-Connection: close" close the current proxy connection, as | Daniel Stenberg | |
Roman Koifman found out. | |||
2004-08-24 | Attempt to quick-fix the getdate problem by post-replacing the getdate.c | Daniel Stenberg | |
file after the bison/yacc process to add the fix Harshal Pradhan suggested. | |||
2004-08-23 | updated in CVS, generated with a much newer bison version | Daniel Stenberg | |
2004-08-23 | Roman Koifman pointed out that libcurl send Expect: 100-continue on POSTs and | Daniel Stenberg | |
PUTs even when told to use HTTP 1.0, which is not correct. | |||
2004-08-20 | Alexander Krasnostavsky made the write callback get called even when a zero | Daniel Stenberg | |
byte file is downloaded. | |||
2004-08-20 | actually, we check for a numerical host using either ipv4 or ipv6, as neither | Daniel Stenberg | |
should result in a reverse dns lookup | |||
2004-08-20 | use inet_pton() correctly! | Daniel Stenberg | |
2004-08-19 | simplified expression | Daniel Stenberg | |
2004-08-19 | Ling Thio pointed out that getaddrinfo() reverse-lookups ip-only names, and | Daniel Stenberg | |
this is an attempt to prevent it from doing that. affects ipv6-enabled only. | |||
2004-08-18 | indented the code curl-style | Daniel Stenberg | |
2004-08-17 | Kjetil Jacobsen reported an open file leak in file:// transfers of empty | Daniel Stenberg | |
files. | |||
2004-08-16 | allow a custom "Accept-Encoding:" header override the internally set one | Daniel Stenberg | |
that gets set with CURLOPT_ENCODING | |||
2004-08-16 | strip trailing whitespace | Daniel Stenberg | |
2004-08-16 | syncronized with libcurl.def. | Gunter Knauf | |
2004-08-16 | cosmetic fix. | Gunter Knauf | |
2004-08-16 | Roland Krikava's cookies over proxy fix. | Daniel Stenberg | |
2004-08-14 | fixed linkage dll targets. (submitted by Casey O'Donnell) | Gunter Knauf | |
2004-08-11 | include the server response in the error message when an FTP server gives | Daniel Stenberg | |
back a 530 after the password is provided, as it isn't necessary because of a bad user name or password. | |||
2004-08-10 | Ok, setting CURLOPT_POST to 0 will now convert the request to a GET (this | Daniel Stenberg | |
remains undocumented as this is not the way we recommend) | |||
2004-08-10 | ignore curllib.dsp | Daniel Stenberg | |
2004-08-10 | In OpenSSL 0.9.7d and earlier, ASN1_STRING_to_UTF8 fails if the input is | Daniel Stenberg | |
already UTF-8 encoded. We check for this case and copy the raw string manually to avoid the problem. This code can be made conditional in the future when OpenSSL has been fixed. Work-around brought by Alexis S. L. Carvalho. | |||
2004-08-10 | more typecasts to please picky compilers | Daniel Stenberg | |
2004-08-09 | typecast the assigment of an unsigned variable to a signed one to prevent | Daniel Stenberg | |
picky warnings | |||
2004-08-09 | ->fread() should get a size_t variable passed in | Daniel Stenberg | |
2004-08-09 | made telrcv() take a ssize_t argument instead of int to better match other | Daniel Stenberg | |
functions (and prevent warnings) | |||
2004-08-05 | Enrico Scholz fixed the service name to be uppercase as reported in bug | Daniel Stenberg | |
report #1004105 | |||
2004-08-04 | Fixed multiple IP connects with the multi interface. This fix is influenced | Daniel Stenberg | |
by Gisle Vanem's patch, only modified by me. | |||
2004-08-04 | Dylan Salisbury's fix to prevent us from accepting cookies from TLD only | Daniel Stenberg | |
2004-07-31 | Joel Chen reported that we assumed content within quotes a bit too much in | Daniel Stenberg | |
the digest code. This fixes it. | |||
2004-07-29 | prevent all the sig and alarm stuff when using ares | Daniel Stenberg | |