History log of /curl/lib/cookie.c (Results 226 – 250 of 299)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: curl-7_15_4
# 606562aa 24-May-2006 Daniel Stenberg

Michael Wallner provided a patch that allows "SESS" to be set with
CURLOPT_COOKIELIST, which then makes all session cookies get cleared. (slightly
edited by me, and the re-indent in cookie.c

Michael Wallner provided a patch that allows "SESS" to be set with
CURLOPT_COOKIELIST, which then makes all session cookies get cleared. (slightly
edited by me, and the re-indent in cookie.c was also done by me)

show more ...


Revision tags: curl-7_15_3, curl-7_15_2, curl-7_15_1, curl-7_15_0, curl-7_14_1, c-ares-1_3_0
# 90e1a690 17-Aug-2005 Daniel Stenberg

remove the typecast to long from time_t, since we now store it as curl_off_t


# a676c185 17-Aug-2005 Daniel Stenberg

- Jeff Pohlmeyer found out that if you ask libcurl to load a cookiefile (with
CURLOPT_COOKIEFILE), add a cookie (with CURLOPT_COOKIELIST), tell it to
write the result to a given cookie ja

- Jeff Pohlmeyer found out that if you ask libcurl to load a cookiefile (with
CURLOPT_COOKIEFILE), add a cookie (with CURLOPT_COOKIELIST), tell it to
write the result to a given cookie jar and then never actually call
curl_easy_perform() - the given file(s) to read was never read but the
output file was written and thus it caused a "funny" result.

- While doing some tests for the bug above, I noticed that Firefox generates
large numbers (for the expire time) in the cookies.txt file and libcurl
didn't treat them properly. Now it does.

show more ...


# 1c388a52 28-Jul-2005 Daniel Stenberg

curl standard indent/format


# 2236ba0d 27-Jul-2005 Daniel Stenberg

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_interfac

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.

show more ...


Revision tags: curl-7_14_0
# 6b1220b6 26-Apr-2005 Daniel Stenberg

Cory Nelson's work on nuking compiler warnings when building on x64 with
VS2005.


Revision tags: curl-7_13_2
# ab4086bc 31-Mar-2005 Daniel Stenberg

Updated the copyright year since changes have been this year.


Revision tags: curl-7_13_1
# 6f752c64 04-Mar-2005 Daniel Stenberg

Dave Dribin made it possible to set CURLOPT_COOKIEFILE to "" to activate
the cookie "engine" without having to provide an empty or non-existing file.


Revision tags: before_ftp_statemachine, curl-7_13_0
# 67abd4cd 22-Dec-2004 Daniel Stenberg

Rune Kleveland fixed a minor memory leak for received cookies with the (rare)
version attribute set.


Revision tags: curl-7_12_3
# ac269a8f 05-Dec-2004 Daniel Stenberg

Dan Fandrich added the --disable-cookies option to configure to build
libcurl without cookie support. This is mainly useful if you want to build a
minimalistic libcurl with no cookies support

Dan Fandrich added the --disable-cookies option to configure to build
libcurl without cookie support. This is mainly useful if you want to build a
minimalistic libcurl with no cookies support at all. Like for embedded
systems or similar.

show more ...


Revision tags: curl-7_12_2
# f40c9b83 16-Oct-2004 Daniel Stenberg

libcurl leaked memory for cookies with the "max-age" field set.


# 39af394a 06-Oct-2004 Daniel Stenberg

removed tabs and trailing whitespace from source


# be7ce435 03-Oct-2004 Daniel Stenberg

Replaced the use of isspace() with our own version instead since we have most
data as 'char *' and that makes us pass in negative values if there is 8bit
data in the string. Changing to unsig

Replaced the use of isspace() with our own version instead since we have most
data as 'char *' and that makes us pass in negative values if there is 8bit
data in the string. Changing to unsigned causes too much warnings or too many
required typecasts to the normal string functions.

show more ...


# 13cc010e 13-Sep-2004 Daniel Stenberg

getdate.h is not required to include, it adds nothing new


Revision tags: curl-7_12_1
# de6ab3de 04-Aug-2004 Daniel Stenberg

Dylan Salisbury's fix to prevent us from accepting cookies from TLD only


# 0e031654 26-Jul-2004 Daniel Stenberg

Bertrand Demiddelaer fixed two missing newlines


# ce945bd2 30-Jun-2004 Daniel Stenberg

5K array on the stack is a big hefty, it is now allocated with malloc
instead


Revision tags: pre-aifix
# 35558e6b 22-Jun-2004 Daniel Stenberg

David Cohen pointed out that RFC2109 says clients should allow cookies to
contain least 4096 bytes while libcurl only allowed 2047. I raised the limit
to 4999 now and made the used buffer get

David Cohen pointed out that RFC2109 says clients should allow cookies to
contain least 4096 bytes while libcurl only allowed 2047. I raised the limit
to 4999 now and made the used buffer get malloc()ed instead of simply
allocated on stack as before.

show more ...


Revision tags: curl-7_12_0
# 755f98e7 21-May-2004 Daniel Stenberg

While talking to host a.b.c, libcurl did wrongly not accept cookies that were
set to the domain .a.b.c (that is with a dot prefix). This is now fixed and
test case 171 verifies it.


# 34e8baab 12-May-2004 Daniel Stenberg

general cleanup to bail out nice and clean when a memory function fails
to deliver


# bbafb2eb 11-May-2004 Daniel Stenberg

curl_global_init_mem() allows the memory functions to be replaced.
memory.h is included everywhere for this.


# 5dcab07c 10-May-2004 Daniel Stenberg

if a malloc fails, clear up the memory and return failure


Revision tags: curl-7_11_2, c-ares-1_2_0, curl-7_11_1
# 99482507 10-Mar-2004 Daniel Stenberg

strequal() returns int so we typecast the return to bool when we store the
result as bool


# 7d8cd590 26-Feb-2004 Daniel Stenberg

use calloc instead of malloc and we won't have to memset() the struct


# d571064b 26-Feb-2004 Daniel Stenberg

Clear up int/long/size_t/ssize_t usage a bit


12345678910>>...12