
* Add new modules, docs, and tests in cookies/ * Server: parse Cookie header, make cookies, make Set-Cookie header * User agent: * parse Set-Cookie header * save cookies * make Cookie header * interface for substituting better cookie storage * Common functionality: validate cookie parts * Add deprecation notice to old cookie lib Test and validation cleanup
15 lines
396 B
Racket
15 lines
396 B
Racket
#lang racket/base
|
|
#|
|
|
net/cookies/server : RFC6265-compliant server cookie handling
|
|
- read the Cookie header
|
|
- make a cookie struct
|
|
- write the Set-Cookie header
|
|
|
|
net/cookies/user-agent : RFC6265-compliant user agent cookie handling
|
|
- read the Set-Cookie header
|
|
- make a cookie struct
|
|
- write the Cookie header
|
|
|
|
net/cookies/common : Any code that winds up being common to UA & server
|
|
|#
|