summaryrefslogtreecommitdiff
path: root/lib/cookie.c
Commit message (Expand)AuthorAgeFilesLines
* Ates Goral pointed out that libcurl's cookie parser did case insensitiveDaniel Stenberg2006-07-081-1/+3
* Michael Wallner provided a patch that allows "SESS" to be set withDaniel Stenberg2006-05-241-101/+153
* remove the typecast to long from time_t, since we now store it as curl_off_tDaniel Stenberg2005-08-171-1/+1
* - Jeff Pohlmeyer found out that if you ask libcurl to load a cookiefile (withDaniel Stenberg2005-08-171-3/+26
* curl standard indent/formatDaniel Stenberg2005-07-281-21/+22
* Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is aDaniel Stenberg2005-07-271-20/+70
* Cory Nelson's work on nuking compiler warnings when building on x64 withDaniel Stenberg2005-04-261-2/+2
* Updated the copyright year since changes have been this year.Daniel Stenberg2005-03-311-1/+1
* Dave Dribin made it possible to set CURLOPT_COOKIEFILE to "" to activateDaniel Stenberg2005-03-041-0/+4
* Rune Kleveland fixed a minor memory leak for received cookies with the (rare)Daniel Stenberg2004-12-221-0/+2
* Dan Fandrich added the --disable-cookies option to configure to buildDaniel Stenberg2004-12-051-2/+2
* libcurl leaked memory for cookies with the "max-age" field set.Daniel Stenberg2004-10-161-0/+2
* removed tabs and trailing whitespace from sourceDaniel Stenberg2004-10-061-20/+20
* Replaced the use of isspace() with our own version instead since we have mostDaniel Stenberg2004-10-031-6/+7
* getdate.h is not required to include, it adds nothing newDaniel Stenberg2004-09-131-1/+0
* Dylan Salisbury's fix to prevent us from accepting cookies from TLD onlyDaniel Stenberg2004-08-041-14/+2
* Bertrand Demiddelaer fixed two missing newlinesDaniel Stenberg2004-07-261-2/+2
* 5K array on the stack is a big hefty, it is now allocated with mallocDaniel Stenberg2004-06-301-16/+19
* David Cohen pointed out that RFC2109 says clients should allow cookies toDaniel Stenberg2004-06-221-1/+10
* While talking to host a.b.c, libcurl did wrongly not accept cookies that wereDaniel Stenberg2004-05-211-0/+3
* general cleanup to bail out nice and clean when a memory function failsDaniel Stenberg2004-05-121-75/+92
* curl_global_init_mem() allows the memory functions to be replaced.Daniel Stenberg2004-05-111-0/+1
* if a malloc fails, clear up the memory and return failureDaniel Stenberg2004-05-101-0/+10
* strequal() returns int so we typecast the return to bool when we store theDaniel Stenberg2004-03-101-3/+3
* use calloc instead of malloc and we won't have to memset() the structDaniel Stenberg2004-02-261-4/+1
* Clear up int/long/size_t/ssize_t usage a bitDaniel Stenberg2004-02-261-4/+4
* Dan Fandrich's cleanup patch to make pedantic compiler options cause lessDaniel Stenberg2004-01-291-10/+10
* updated year in the copyright stringDaniel Stenberg2004-01-071-1/+1
* Added some infof() calls, that require the data pointer so now severalDaniel Stenberg2003-08-111-32/+26
* Jan Sundin reported a case where curl ignored a cookie that browsers don't,Daniel Stenberg2003-08-041-1/+7
* use CURLDEBUG instead of MALLOCDEBUGDaniel Stenberg2003-06-261-1/+1
* Skip any preceeding dots from the domain name of cookies when we keep themDaniel Stenberg2003-05-151-12/+12
* Many cookie fixes:Daniel Stenberg2003-04-301-56/+136
* testing, ignore this commitSterling Hughes2003-03-311-0/+1
* removed the local variables for emacs and vim, use the new sample.emacsDaniel Stenberg2003-01-291-8/+0
* copyright year update in the source headerDaniel Stenberg2003-01-161-1/+1
* kromJx@crosswinds.net's fix that now uses checkprefix() instead ofDaniel Stenberg2002-10-281-3/+3
* updated source code boilerplate/headerDaniel Stenberg2002-09-031-7/+7
* properly skip white spaces on Set-Cookie: header linesDaniel Stenberg2002-07-291-1/+5
* added disable-[protocol] support, largely provided by Miklos NemethDaniel Stenberg2002-06-111-0/+4
* support for ingoring session cookies addedDaniel Stenberg2002-05-071-13/+31
* Dirk Manske made libcurl strip off white spaces from the beginning of cookieDaniel Stenberg2002-04-141-7/+15
* Jacky Lam cookie parser fix for domains with preceeding dotDaniel Stenberg2002-03-251-1/+7
* copyright string (year) updateDaniel Stenberg2002-03-191-1/+1
* made Max-Age work as defined in the RFC.Daniel Stenberg2002-02-271-3/+11
* When saving a cookie jar, set field 1 (counted from 0) properly to TRUE if theDaniel Stenberg2002-02-261-0/+1
* removed crash on weird input, this also better discards silly inputDaniel Stenberg2002-02-261-8/+31
* As identified in bug report #495290, the last "name=value" pair in aDaniel Stenberg2002-01-071-0/+5
* added precautions to not go insane when two matching cookies end up in theDaniel Stenberg2002-01-071-1/+8
* prevent strdup()ing NULL -- Paul Harrington's reportDaniel Stenberg2001-10-301-1/+1