This is the support point for server-side cookies. It wraps a CookieStack together with a set of HttpHeaders, along with the appropriate cookie parser. One would do something very similar for client side cookie parsing also.
Construct cookie wrapper with the provided headers.
Parse all cookies from our HttpHeaders, pushing each onto the CookieStack as we go.
Output the token list to the provided consumer
Reset these cookies for another parse
See Implementation
This is the support point for server-side cookies. It wraps a CookieStack together with a set of HttpHeaders, along with the appropriate cookie parser. One would do something very similar for client side cookie parsing also.