Package org.glassfish.grizzly.http.util
Class CookieHeaderParser
- java.lang.Object
-
- org.glassfish.grizzly.http.util.CookieHeaderParser
-
public class CookieHeaderParser extends Object
Cookie header parser based on RFC6265
The parsing of cookies using RFC6265 is more relaxed that the specification in the following ways:
- Values 0x80 to 0xFF are permitted in cookie-octet to support the use of UTF-8 in cookie values as used by HTML 5.
- For cookies without a value, the '=' is not required after the name as some browsers do not sent it.
Implementation note:
This class has been carefully tuned.- Author:
- The Tomcat team, Arjan Tijms
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanisToken(int c)static voidparseCookie(byte[] bytes, int offset, int len, Cookies serverCookies)
-
-
-
Method Detail
-
parseCookie
public static void parseCookie(byte[] bytes, int offset, int len, Cookies serverCookies)
-
isToken
public static boolean isToken(int c)
-
-