Daniel Stenberg
|
744d8c1006
|
fixes
|
2002-10-28 19:17:49 +00:00 |
|
Daniel Stenberg
|
c2e2c98d81
|
fixed the cygwin check for -no-undefined
|
2002-10-23 14:45:28 +00:00 |
|
Daniel Stenberg
|
3fa353a2d3
|
improved the check for an ISO cpp by checking specificly for __BORLANDC__
too, as Emiliano Ida has confirmed it to work
|
2002-10-23 14:15:29 +00:00 |
|
Daniel Stenberg
|
c27c9f80d2
|
kromJx@crosswinds.net made it run properly with stunnel >=4.0
|
2002-10-23 14:07:34 +00:00 |
|
Daniel Stenberg
|
b5a74715cf
|
bad headers can come in two kinds, we either treat everything as one big
badly assumed header, or we think that parts of the buffer is a bad header
and the rest is treated as a normal body part
|
2002-10-23 13:48:37 +00:00 |
|
Daniel Stenberg
|
13ee2901f4
|
another week, 7 fixes
|
2002-10-21 14:04:26 +00:00 |
|
Daniel Stenberg
|
32c03eadd6
|
glibc 2.2.93 gethostbyname_r() no longer returns ERANGE if the given buffer
size isn't big enough. For some reason they now return EAGAIN.
Redhat 8 ships with this glibc version.
|
2002-10-21 13:20:30 +00:00 |
|
Daniel Stenberg
|
0fa512f26d
|
Nikita Schmidt's fix to debian bug report #165382. This is verified with
the new test case 55.
|
2002-10-21 12:07:02 +00:00 |
|
Daniel Stenberg
|
219d88518c
|
Added test 55, follow location with a single slash in the original path.
This caused curl 7.10.1 to crash.
|
2002-10-21 12:02:44 +00:00 |
|
Daniel Stenberg
|
ecf3aee43a
|
check for cygwin and if built on that, enable the no-undefined option for
libtool. Otherwise disable it.
|
2002-10-21 06:49:42 +00:00 |
|
Daniel Stenberg
|
7f08cab73e
|
test 54 added, blank Location: field
|
2002-10-21 06:18:51 +00:00 |
|
Daniel Stenberg
|
c4e9ef199e
|
--enable-debug now checks if gcc is used before it sets all those gcc-
specific options. This should make this option work on more platforms with
other compilers.
|
2002-10-21 05:52:05 +00:00 |
|
Daniel Stenberg
|
9e612b5550
|
make very sure that we return 'done' properly when a transfer is done, as
otherwise the multi interface gets problems
|
2002-10-18 15:28:33 +00:00 |
|
Daniel Stenberg
|
203633d34d
|
return call_multi when we follow a location
|
2002-10-18 15:27:49 +00:00 |
|
Daniel Stenberg
|
45bd009bb1
|
if we found no string on the Location: line, don't try to follow it
|
2002-10-18 13:51:00 +00:00 |
|
Daniel Stenberg
|
ee656415c4
|
moved comments to first column and automake stopped complaining
|
2002-10-18 07:55:38 +00:00 |
|
Daniel Stenberg
|
156aad198f
|
Make the COOKIESESSION work better by creating a list of cookie files files
when given in the curl_easy_setopt() and then parse them all on the first
curl_easy_perform() call instead.
|
2002-10-17 07:10:39 +00:00 |
|
Daniel Stenberg
|
b1ffb79a50
|
junk cookies test53 added
|
2002-10-17 07:03:26 +00:00 |
|
Daniel Stenberg
|
d6654bfe00
|
mucho fixed
|
2002-10-16 09:53:38 +00:00 |
|
Daniel Stenberg
|
eefdd67d22
|
Added new mirror
|
2002-10-15 14:18:31 +00:00 |
|
Daniel Stenberg
|
86a86d7afd
|
Andrs Garca's corrections
|
2002-10-15 08:39:30 +00:00 |
|
Daniel Stenberg
|
b6dac2b484
|
ignore .ps and .pdf files too
|
2002-10-14 07:47:40 +00:00 |
|
Daniel Stenberg
|
e6367abae9
|
generate and include PDF versions of the docs in the release archive
|
2002-10-14 07:39:49 +00:00 |
|
Daniel Stenberg
|
fc4d1d9a60
|
my first take at a memory leak detection document
|
2002-10-13 10:34:33 +00:00 |
|
Daniel Stenberg
|
94bae20776
|
some more
|
2002-10-13 10:28:38 +00:00 |
|
Daniel Stenberg
|
bb8c8d273c
|
added more info
|
2002-10-13 10:18:10 +00:00 |
|
Daniel Stenberg
|
ee600ace37
|
three silly bugs
|
2002-10-12 12:35:30 +00:00 |
|
Daniel Stenberg
|
da86e32eb4
|
-y and -Y was switched in the examples
|
2002-10-12 12:14:09 +00:00 |
|
Daniel Stenberg
|
b5bbc04ad1
|
return error properly when a non-blocking connect fails using the multi
interface
|
2002-10-12 11:18:08 +00:00 |
|
Daniel Stenberg
|
265c58611f
|
When we receive a "bad header" we must sure not to write down the data part
as well, as then we write the same data twice.
|
2002-10-11 20:55:08 +00:00 |
|
Daniel Stenberg
|
25c973a39e
|
fix bad free() that caused segfault
|
2002-10-11 17:44:36 +00:00 |
|
Daniel Stenberg
|
123c7b32db
|
7.10.1 commit
|
2002-10-11 13:25:08 +00:00 |
|
Daniel Stenberg
|
e2d8e2c4ae
|
more
|
2002-10-10 08:04:26 +00:00 |
|
Daniel Stenberg
|
701509d322
|
Jeff Lawson fixed a few problems with connection re-use that remained when
you set CURLOPT_PROXY to "".
|
2002-10-10 08:00:49 +00:00 |
|
Daniel Stenberg
|
c3cc616264
|
Junk data could get inserted when saving/getting HTTP headers, as discovered
by Craig Davison. Now we deal with the 'nread' variable correctly between
each header line.
|
2002-10-09 13:03:51 +00:00 |
|
Daniel Stenberg
|
91b84b89e4
|
failf() now sends the text to the debug function callback
|
2002-10-08 16:10:37 +00:00 |
|
Daniel Stenberg
|
017ec204a9
|
set version and date
|
2002-10-08 13:30:34 +00:00 |
|
Daniel Stenberg
|
8dbfecd153
|
added --ca
|
2002-10-08 13:30:15 +00:00 |
|
Daniel Stenberg
|
512db1bc54
|
Added timeout support for the non-windows version.
|
2002-10-08 13:03:26 +00:00 |
|
Daniel Stenberg
|
e157aabd4d
|
rewrote the --with-zlib check, based on Albert Chin's input.
|
2002-10-08 12:53:04 +00:00 |
|
Daniel Stenberg
|
db2fea448c
|
7.10 not 7.9.9 (there never was one named that)
|
2002-10-08 09:24:21 +00:00 |
|
Daniel Stenberg
|
dd82d69b8c
|
5.7 Link errors when building libcurl on Windows!
|
2002-10-08 07:16:17 +00:00 |
|
Daniel Stenberg
|
27328281b7
|
more blurb
|
2002-10-08 07:11:34 +00:00 |
|
Daniel Stenberg
|
51d205b267
|
Kevin's fix to use DESTDIR instead of prefix on make install
|
2002-10-08 06:50:10 +00:00 |
|
Daniel Stenberg
|
84800914f6
|
added libcurl-the-guide to the dist
|
2002-10-07 18:23:52 +00:00 |
|
Daniel Stenberg
|
9b296e65bd
|
Following locations properly, if told to do so.
|
2002-10-07 13:38:59 +00:00 |
|
Daniel Stenberg
|
5f649a1649
|
Move the URL concat code to Curl_follow(), and added a proto for that
function. For Location: following.
|
2002-10-07 13:38:34 +00:00 |
|
Daniel Stenberg
|
daea056210
|
Kevin Roth pointed out that 'make install' failed if built outside the
sourcedir if we're not using $(srcdir) properly.
|
2002-10-07 09:04:50 +00:00 |
|
Daniel Stenberg
|
30c0db06bd
|
Kevin's update
|
2002-10-07 07:38:33 +00:00 |
|
Daniel Stenberg
|
91168c005c
|
fixes since 7.10
|
2002-10-04 14:27:31 +00:00 |
|