racket/net-lib/net/cookies/struct.rkt
Jordan Johnson a01e93b515 Add new RFC6265-compliant cookies/ folder, modules, tests, docs.
* 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
2015-03-28 15:51:01 -07:00

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
|#