Daniel Stenberg
84c2184909
CURLOPT_COOKIELIST change since it no longer modifies the input string contents
2005-07-30 08:27:51 +00:00
Daniel Stenberg
e358a24a75
reset the numcookies counter too (I missed it in the previous commit)
2005-07-28 21:53:09 +00:00
Daniel Stenberg
9da9d00c62
fixed example since this is how the interface works now
2005-07-28 21:51:20 +00:00
Daniel Stenberg
ec3f269d1f
now strdups the cookielist inpointer before passed on, as the cookie function
...
modifies it
2005-07-28 21:50:34 +00:00
Daniel Stenberg
1c388a52a5
curl standard indent/format
2005-07-28 21:49:58 +00:00
Gisle Vanem
34a827bbfe
Needs 'struct_stat'. Increased verbosity.
2005-07-28 13:20:27 +00:00
Daniel Stenberg
726b9e2240
If any of the options CURLOPT_HTTPGET, CURLOPT_POST and CURLOPT_HTTPPOST is
...
set to 1, CURLOPT_NOBODY will now automatically be set to 0.
2005-07-27 22:29:50 +00:00
Daniel Stenberg
2236ba0d20
Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a
...
simple interface to extracting and setting cookies in libcurl's internal
"cookie jar". See the new cookie_interface.c example code.
2005-07-27 22:17:14 +00:00
Daniel Stenberg
463c0f7096
disabling HTTP should also nullify this function call
2005-07-27 21:44:43 +00:00
Dan Fandrich
e49a7e361c
Fixed --without-gnutls
2005-07-27 18:22:21 +00:00
Dan Fandrich
6e87cf5b30
Fixed some typos in output messages.
2005-07-21 22:18:35 +00:00
Dan Fandrich
5872e8dd7e
Properly support the options --without-spnego --without-gssapi --without-krb4
2005-07-20 23:00:27 +00:00
Dan Fandrich
e81d4ac8c8
Add -Wdeclaration-after-statement to gcc to detect accidental C99-style
...
variable declarations.
2005-07-20 21:58:23 +00:00
Daniel Stenberg
4922904991
Simplified the code within curl_easy_perform() that calls Curl_perform().
...
Pointed out by Bjorn Reese.
2005-07-17 12:44:11 +00:00
Daniel Stenberg
decae2dcda
cURLpp 0.5.1
2005-07-15 06:57:36 +00:00
Daniel Stenberg
16bbd13af7
Diego Casorran patches to make (lib)curl build fine on Amiga again
2005-07-13 18:06:40 +00:00
Daniel Stenberg
ee0666c8df
better description for HEADERFUNCTION
2005-07-13 09:46:37 +00:00
Daniel Stenberg
a8a8ae2e92
elaborate a bit on how to deal with chunked-encoded trailers that now are
...
passed to the app using the header callback
2005-07-13 09:37:22 +00:00
Daniel Stenberg
fd1148a728
converted this back to one name per line to make it easier/better to diff
...
and merge when new names are added
2005-07-13 07:44:53 +00:00
Daniel Stenberg
74c7b41ee7
mention the Rexx/CURL release
2005-07-12 18:20:31 +00:00
Daniel Stenberg
465e19dbe9
Adrian Schuur added trailer support in the chunked encoding stream. The
...
trailer is then sent to the normal header callback/stream.
2005-07-12 18:15:34 +00:00
Daniel Stenberg
86660c73e5
mention an old idea
2005-07-08 13:28:16 +00:00
Daniel Stenberg
6d8a208df2
mention the exception only once ;-)
2005-07-07 05:43:04 +00:00
Daniel Stenberg
c3a826fdce
correction for the 407 with response-body case
2005-07-05 22:07:34 +00:00
Gisle Vanem
c5d6a42abf
Update copyright.
2005-07-05 18:07:55 +00:00
Daniel Stenberg
d49c144297
Gisle Vanem came up with a nice little work-around for bug #1230118 . It
...
seems the Windows (MSVC) libc time functions may return data one hour off if
TZ is not set and automatic DST adjustment is enabled. This made
curl_getdate() return wrong value, and it also concerned internal cookie
expirations etc.
2005-07-05 14:57:41 +00:00
Daniel Stenberg
e7de7d5eb3
mention the strerror_r detection fix in configure
2005-07-04 21:53:02 +00:00
Daniel Stenberg
20005a83d2
Andrew Bushnell provided enough info for me to tell that we badly needed to
...
fix the CONNECT authentication code with multi-pass auth methods (such as
NTLM) as it didn't previously properly ignore response-bodies - in fact it
stopped reading after all response headers had been received. This could
lead to libcurl sending the next request and reading the body from the first
request as response to the second request. (I also renamed the function,
which wasn't strictly necessary but...)
The best fix would to once and for all make the CONNECT code use the
ordinary request sending/receiving code, treating it as any ordinary request
instead of the special-purpose function we have now. It should make it
better for multi-interface too. And possibly lead to less code...
Added test case 265 for this. It doesn't work as a _really_ good test case
since the test proxy is too stupid, but the test case helps when running the
debugger to verify.
2005-07-03 22:25:15 +00:00
Daniel Stenberg
27926030f9
add more info when this script gets confused, and added getaddrinfo and
...
freeaddrinfo to the trace output
2005-06-30 14:07:52 +00:00
Daniel Stenberg
701de67b79
use %p to printf pointers since %x doesn't work properly on tru64 for this
...
(and besides, we should be using the same %-code for all pointers)
2005-06-30 13:30:23 +00:00
Daniel Stenberg
883479f01e
enable memory debugging on tru64 with ipv6 support by doing a little different
...
defining, since the system headers themselves redefine getaddrinfo
2005-06-30 13:28:58 +00:00
Dan Fandrich
b37a0b0512
Detect (or at least infer) glibc-style strerror_r even when cross-compiling.
2005-06-30 04:53:05 +00:00
Daniel Stenberg
5c5d5270d2
new Lua binding
2005-06-28 09:08:52 +00:00
Daniel Stenberg
36461fb2aa
clarify that ftp ascii transfers don't do right in current libcurl
2005-06-26 10:08:08 +00:00
Daniel Stenberg
d8dcd5e472
added docs about the new proxy string support
2005-06-23 23:07:07 +00:00
Daniel Stenberg
c51b46c982
David Shaw fixes
2005-06-22 22:31:08 +00:00
Daniel Stenberg
b1b63c1dd1
mention more ARMs
2005-06-22 22:30:52 +00:00
Daniel Stenberg
30c93d66eb
verify that the URL decoding is done properly too
2005-06-22 22:24:47 +00:00
Daniel Stenberg
3b60bb7259
David Shaw's fix that unifies proxy string treatment so that a proxy given
...
with CURLOPT_PROXY can use a http:// prefix and user + password. The user
and password fields are now also URL decoded properly.
Test case 264 added to verify.
2005-06-22 22:24:10 +00:00
Daniel Stenberg
c73f8e835f
David Shaw's updated version:
...
It now properly handles code that uses curl_free() (since not all versions of
curl have it), and also fixes a few problems when detecting libcurl on MinGW,
and a linker problem on OSX Panther.
2005-06-22 06:58:11 +00:00
Daniel Stenberg
93558c4299
mistake
2005-06-20 22:32:45 +00:00
Daniel Stenberg
396cff5779
possible windows memory leak fixed by Gisle
2005-06-19 21:38:45 +00:00
Dominick Meglio
336154e729
Added some checks for the addrinfo structure.
2005-06-19 16:58:40 +00:00
Gisle Vanem
bb0aba34fa
Ensure thread handle is closed too.
2005-06-14 14:47:21 +00:00
Daniel Stenberg
1dc0ce9562
4.13 Why is curl -R on Windows one hour off?
2005-06-13 18:33:40 +00:00
Daniel Stenberg
e4aee168b5
recent buildconf fiddling
2005-06-13 11:20:51 +00:00
Daniel Stenberg
2c10c895da
run libtoolize in the ares dir as well, and modified the output slightly for
...
all tools run in the ares dir - now shown like "running ares/[tool]"
2005-06-13 10:49:14 +00:00
Daniel Stenberg
c04fae3096
CURLINFO_FILETIME returns the time for GMT
2005-06-11 22:04:41 +00:00
Daniel Stenberg
a214af0830
make sure the found tool is a regular file (and not a dir or something)
2005-06-09 22:43:13 +00:00
Daniel Stenberg
f21bc46e82
Modified to use 'head -n 1' instead of 'head -1' since some versions of head
...
complains and claims this is deprecated.
2005-06-09 06:45:54 +00:00