aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-06-22 21:22:42 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-06-22 21:22:42 +0000
commit1c10272e15172a9aaf298f83696d07a593620e0d (patch)
tree91ad122d96e048069283ad265a9e7eae9157ca5c /CHANGES
parent0badcf381a7df0c254e097616c295d7d24700e86 (diff)
cookie size
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 73bf192d2..b2c251393 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,15 @@
Changelog
Daniel (22 June 2004)
+- 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. Extended test case 46 to include a cookie with
+ very huge content to verify the fix.
+
+- Günter Knauf fixed getdate.y to remove a few warnings. I removed the
+ ifdef'ed test we never ever use anyway.
+
- Gisle Vanem fixed the certificate wildcard checks to support a '*'-letter
anywhere in the wildcard string, support multiple '*'-letters in the
wildcard and to allow the '*'-letter to match a string that includes a dot.