From 4b0ade0434d28bc071a32d43813ccdda373ad076 Mon Sep 17 00:00:00 2001 From: hniksic Date: Tue, 24 May 2005 07:13:47 -0700 Subject: [PATCH] [svn] Explain why rfc2109 and rfc2965 are ignored by Wget's cookie code. --- src/cookies.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/cookies.c b/src/cookies.c index 616748c8..929ab17b 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -27,20 +27,20 @@ modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ -/* Written by Hrvoje Niksic. Parts are loosely inspired by cookie - code submitted by Tomasz Wegrzanowski. +/* Written by Hrvoje Niksic. Parts are loosely inspired by the + cookie patch submitted by Tomasz Wegrzanowski. - Ideas for future work: + This implements the client-side cookie support, as specified + (loosely) by Netscape's "preliminary specification", currently + available at: - * Implement limits on cookie-related sizes, such as max. cookie - size, max. number of cookies, etc. + http://wp.netscape.com/newsref/std/cookie_spec.html - * Add more "cookie jar" methods, such as methods to iterate over - stored cookies, to clear temporary cookies, to perform - intelligent auto-saving, etc. - - * Support `Set-Cookie2' and `Cookie2' headers? Does anyone really - use them? */ + rfc2109 is not supported because of its incompatibilities with the + above widely-used specification. rfc2965 is entirely ignored, + since popular client software doesn't implement it, and even the + sites that do send Set-Cookie2 also emit Set-Cookie for + compatibility. */ #include -- 2.39.2