HTTP-4000.1.1: A library for client-side HTTP

Portabilitynon-portable (not tested)
Stabilityexperimental
MaintainerSigbjorn Finne <sigbjorn.finne@gmail.com>

Network.HTTP.Cookie

Description

This module provides the data types and functions for working with HTTP cookies. Right now, it contains mostly functionality needed by Network.Browser.

Synopsis

Documentation

data Cookie

Cookie is the Haskell representation of HTTP cookie values. See its relevant specs for authoritative details.

Constructors

MkCookie 

Fields

ckDomain :: String
 
ckName :: String
 
ckValue :: String
 
ckPath :: Maybe String
 
ckComment :: Maybe String
 
ckVersion :: Maybe String
 

Instances

Eq Cookie 
Read Cookie 
Show Cookie 

cookieMatch :: (String, String) -> Cookie -> Bool

cookieMatch (domain,path) ck performs the standard cookie match wrt the given domain and path.

cookieToHeader :: Cookie -> Header

cookieToHeader ck serialises a Cookie to an HTTP request header.

processCookieHeaders :: String -> [Header] -> ([String], [Cookie])

processCookieHeaders dom hdrs