Stricter cookie contracts
svn: r18629 original commit: e69a18eefd90a336e7f4b8305485732ea5896727
This commit is contained in:
commit
3f01662a45
|
@ -1,5 +1,7 @@
|
|||
#lang scheme/signature
|
||||
|
||||
cookie-name?
|
||||
cookie-value?
|
||||
cookie?
|
||||
valid-domain?
|
||||
set-cookie
|
||||
|
|
|
@ -294,13 +294,14 @@
|
|||
;;
|
||||
;; Returns whether this is a valid string to use as the value or the
|
||||
;; name (depending on value?) of an HTTP cookie.
|
||||
(define (cookie-string? s [value? #t])
|
||||
(unless (string? s)
|
||||
(error* "string expected, received: ~a" s))
|
||||
(if value?
|
||||
(rfc2109:value? s)
|
||||
;; name: token
|
||||
(rfc2068:token? s)))
|
||||
(define (cookie-value? s)
|
||||
(and (string? s)
|
||||
(rfc2109:value? s)))
|
||||
|
||||
(define (cookie-name? s)
|
||||
(and (string? s)
|
||||
;; name: token
|
||||
(rfc2068:token? s)))
|
||||
|
||||
;; Host names as per RFC 1123 and RFC952, more or less, anyway. :-)
|
||||
(define char-set:hostname
|
||||
|
|
Loading…
Reference in New Issue
Block a user