h$ uԗ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                                                 ,(c) Dominic Steinitz 2005, Warrick Gray 2002#BSD-style (see the file ReadMe.tex)!dominic.steinitz@blueyonder.co.uk experimentalportable Safe-Inferred>HTTPCut up a string into 72 char lines, each line terminated by CRLF. Safe-Inferred>See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested) Safe-Inferred>3 HTTPcrlf) is our beloved two-char line terminator.HTTPlf; is a tolerated line terminator, per RFC 2616 section 19.3.HTTPsp$ lets you save typing one character.HTTPsplit delim ls# splits a list into two parts, the delim0 occurring at the head of the second list. If delim isn't in ls, Nothing is returned.HTTPtrim str. removes leading and trailing whitespace from str.HTTP trimL str+ removes leading whitespace (as defined by ) from str.HTTP trimL str, removes trailing whitespace (as defined by ) from str.HTTPsplitMany delim ls removes the delimiter delim from ls.HTTPreadsOne f def str tries to  str-, taking the first result and passing it to f . If the  doesn't succeed, return def.HTTPdropWhileTail p ls" chops off trailing elements from ls until p returns False.HTTPchopAtDelim elt ls breaks up ls" into two at first occurrence of elt; elt is elided too. If elt does not occur, the second list is empty and the first is equal to ls. =Abstract representation of request and response buffer types.See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested) Safe-Inferred> HTTPBufferOp encodes the I/O operations of the underlying buffer over a Handle in an (explicit) dictionary type. May not be needed, but gives us flexibility in explicit overriding and wrapping up of these methods.Along with IO operations is an ad-hoc collection of functions for working with these abstract buffers, as needed by the internals of the code that processes requests and responses.We supply three default BufferOp values, for String- along with the strict and lazy versions of  ByteString. To add others, provide BufferOp definitions forHTTPThe  BufferType class encodes, in a mixed-mode way, the interface that the library requires to operate over data embedded in HTTP requests and responses. That is, we use explicit dictionaries for the operations, but overload the name of the dicts themselves.HTTPstrictBufferOp is the  definition over  ByteStrings, the non-lazy kind.HTTP lazyBufferOp is the  definition over  ByteStrings, the non-strict kind.HTTPstringBufferOp is the  definition over Strings. It is defined in terms of strictBufferOp& operations, unpacking/converting to String when needed.  See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested) Safe-Inferred>HTTPStreams should make layering of TLS protocol easier in future, they allow reading/writing to files etc for debugging, they allow use of protocols other than TCP/IP and they allow customisation.Instances of this class should not trim the input in any way, e.g. leave LF on line endings etc. Unless that is exactly the behaviour you want from your twisted instances ;)HTTP=This is the type returned by many exported network functions.HTTPTrue => shutdown the connection when response has been read / end-of-stream has been reached. !$"#%&'() !$"#()&'%See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested) Safe-Inferred> -HTTP HasHeaders is a type class for types containing HTTP headers, allowing you to write overloaded header manipulation functions for both Request and Response data types, for instance.0HTTPHTTP  HeaderName type, a Haskell data constructor for each specification-defined header, prefixed with Hdr% and CamelCased, (i.e., eliding the - in the process.) Should you require using a custom header, there's the  HdrCustom constructor which takes a String argument.Encoding HTTP header names differently, as Strings perhaps, is an equally fine choice..no decidedly clear winner, but let's stick with data constructors here.cHTTP#MIME entity headers (for sub-parts)dHTTP0Allows for unrecognised or experimental headers.eHTTPThe Header' data type pairs header names & values.iHTTP3Header constructor as a function, hiding above rep.jHTTP headerMap is a straight assoc list for translating between header names and values.kHTTPinsertHeader hdr val x inserts a header with the given header name and value. Does not check for existing headers with same name, allowing duplicates to be introduce (use m if you want to avoid this.)lHTTPinsertHeaderIfMissing hdr val x; adds the new header only if no previous header with name hdr exists in x.mHTTPreplaceHeader hdr val o replaces the header hdr with the value val, dropping any existingnHTTPinsertHeaders hdrs x appends multiple headers to x's existing set.oHTTPretrieveHeaders hdrNm x gets a list of headers with 0 hdrNm.pHTTPfindHeader hdrNm x looks up hdrNm in x3, returning the first header that matches, if any.qHTTPlookupHeader hdr hdrs# locates the first header matching hdr in the list hdrs.rHTTP$parseHeader headerNameAndValueString tries to unscramble a  header: value pairing and returning it as a e.sHTTPparseHeaders hdrs takes a sequence of strings holding header information and parses them into a set of headers (preserving their order in the input argument.) Handles header values split up over multiple lines.,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrs-./efigh0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdklnompqrsj,See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested) Safe-Inferred>#wHTTPCookie is the Haskell representation of HTTP cookie values. See its relevant specs for authoritative details.HTTPcookieToHeaders ck serialises Cookies to an HTTP request header.HTTPcookieMatch (domain,path) ck performs the standard cookie match wrt the given domain and path.HTTP processCookieHeaders dom hdrs wxyz{|}~ wxyz{|}~ Safe-Inferred>#]See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested) Safe-Inferred>4HTTPRequestNormalizer is the shape of a (pure) function that rewrites a request into some normalized form.HTTPNormalizeRequestOptions brings together the various defaulting/normalization options over s. Use % for the standard selection of optionHTTPAn HTTP Response. The  instance of this type is used for message serialisation, which means no body data is output, additionally the output will show an HTTP version of 1.1 instead of the actual version returned by a server.HTTP RequestData contains the head of a HTTP request; method, its URL along with the auxiliary/supporting header data.HTTP ResponseData contains the head of a response payload; HTTP response code, accompanying text description + header fields.HTTP/For easy pattern matching, HTTP response codes xyz are represented as (x,y,z).HTTPAn HTTP Request. The  instance of this type is used for message serialisation, which means no body data is output.HTTP.might need changing in future 1) to support  uri in OPTIONS request 2) transparent support for both relative & absolute uris, although this should already work (leave scheme & host parts empty).HTTP+The HTTP request method, to be used in the  object. We are missing a few of the stranger methods, but these are not really necessary until we add full TLS.HTTP"Parse the authority part of a URL. RFC 1732, section 3.1: //:@:/ Some or all of the parts ":@", ":", ":", and "/" may be excluded.HTTPDeprecated. Use HTTP+A default user agent string. The string is "haskell-HTTP/$version" where $version% is the version of this HTTP package.HTTP3The version of this HTTP package as a string, e.g.  "4000.1.2". This may be useful to include in a user agent string so that you can determine from server logs what version of this package HTTP clients are using. This can be useful for tracking down HTTP compatibility quirks.HTTP'mkRequest method uri' constructs a well formed request for the given HTTP method and URI. It does not normalize the URI for the request _nor_ add the required Host: header. That is done either explicitly by the user or when requests are normalized prior to transmission.HTTPgetRequestVersion req3 returns the HTTP protocol version of the request req. If Nothing, the default  can be assumed.HTTPsetRequestVersion v req& returns a new request, identical to req#, but with its HTTP version set to v.HTTPgetResponseVersion rsp4 returns the HTTP protocol version of the response rsp. If Nothing, the default  can be assumed.HTTPsetResponseVersion v rsp' returns a new response, identical to rsp#, but with its HTTP version set to v.HTTP getAuth req< fishes out the authority portion of the URL in a request's Host header.HTTPnormalizeRequest opts req is the entry point to use to normalize your request prior to transmission (or other use.) Normalization is controlled via the NormalizeRequestOptions record.HTTP3Used when we know exactly how many bytes to expect.HTTPUsed when nothing about data is known, Unfortunately waiting for a socket closure causes bad behaviour. Here we just take data once and give up the rest.HTTPA necessary feature of HTTP/1.1 Also the only transfer variety likely to return any footers.HTTPMaybe in the future we will have a sensible thing to do here, at that time we might want to change the name.HTTPRemove leading crlfs then call readTillEmpty2 (not required by RFC)HTTPRead lines until an empty line (CRLF), also accepts a connection close as end of input, which is not an HTTP/1.1 compliant thing to do - so probably indicates an error condition.HTTP catchIO a h handles IO action exceptions throughout codebase; version-specific tweaks better go here.See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested)None>;YHTTPHStream overloads the use of s, letting you overload the handle operations over the type that is communicated across the handle. It comes in handy for  Network.HTTP Request and Response experimentalnon-portable (not tested)None>= HTTP!Allows stream logging. Refer to  below.HTTPWraps a stream with logging I/O. The first argument is a filename which is opened in  AppendMode.See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested)None>=HTTP(Exception handler for socket operations. See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested)None>?HTTPSimple way to transmit a resource across a non-persistent connection.HTTPLike ), but acting on an already opened stream.HTTPReceive and parse a HTTP request from the given Stream. Should be used for server side interactions.HTTPVery simple function, send a HTTP response over the given stream. This could be improved on to use different transfer types. #"!$%&'() See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested)None>DHTTP simpleHTTP9 transmits a resource across a non-persistent connection.HTTPsimpleHTTP_debug debugFile req behaves like 2, but logs the HTTP operation via the debug file  debugFile.HTTPLike ), but acting on an already opened stream.HTTPsendHTTP hStream httpRequest transmits  httpRequest over hStream, but does not alter the status of the connection, nor request it to be closed upon receiving the response.HTTP*sendHTTP_notify hStream httpRequest action behaves like , but lets you supply an IO action to execute once the request has been successfully transmitted over the connection. Useful when you want to set up tracing of request transmission and its performance.HTTPreceiveHTTP hStream reads a  from the  hStreamHTTP respondHTTP hStream httpResponse transmits an HTTP  over the  hStream. It could be used to implement simple web server interactions, performing the dual role to . See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested) Safe-Inferred>GHTTPHTTP Algorithm# controls the digest algorithm to, MD5 or  MD5Session.HTTP Authority specifies the HTTP Authentication method to use for a given domain/realm; Basic or Digest.HTTPwithAuthority auth req( generates a credentials value from the auth ', in the context of the given request.If a client nonce was to be used then this function might need to be of type ... -> BrowserAction StringHTTPheaderToChallenge base www_auth tries to convert the WWW-Authenticate header www_auth into a  value. See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested) Safe-Inferred>LCHTTP*HTTP proxies (or not) are represented via =, specifying if a proxy should be used for the request (see )HTTPDon't use a proxy.HTTPUse the proxy given. Should be of the form "http://host:port", "host", "host:port", or "http://host". Additionally, an optional # for authentication with the proxy.HTTPfetchProxy flg< gets the local proxy settings and parse the string into a Proxy value. If you want to be informed of ill-formed proxy configuration strings, supply True for flg'. Proxy settings are sourced from the  HTTP_PROXY environment variable, and in the case of Windows platforms, by consulting IE/WinInet's proxy setting in the Registry.HTTPparseProxy str) translates a proxy server string into a Proxy value; returns Nothing if not well-formed. See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested)None>X] HTTPsimpleHTTP req transmits the  req by opening a direct5, non-persistent connection to the HTTP server that req is destined for, followed by transmitting it and gathering up the response as a 7. Prior to sending the request, it is normalized (via ). If you have to mediate the request via an HTTP proxy, you will have to normalize the request yourself. Or switch to using  instead. Examples: simpleHTTP (getRequest "http://hackage.haskell.org/") simpleHTTP (getRequest "http://hackage.haskell.org:8012/")HTTP Identical to ), but acting on an already opened stream.HTTPsendHTTP hStream httpRequest transmits  httpRequest (after normalization) over hStream, but does not alter the status of the connection, nor request it to be closed upon receiving the response.HTTP*sendHTTP_notify hStream httpRequest action behaves like , but lets you supply an IO action to execute once the request has been successfully transmitted over the connection. Useful when you want to set up tracing of request transmission and its performance.HTTPreceiveHTTP hStream reads a  from the  hStreamHTTP respondHTTP hStream httpResponse transmits an HTTP  over the  hStream. It could be used to implement simple web server interactions, performing the dual role to .HTTP$A convenience constructor for a GET .If the URL isn't syntactically valid, the function raises an error.HTTP%A convenience constructor for a HEAD .If the URL isn't syntactically valid, the function raises an error.HTTP%A convenience constructor for a POST .If the URL isn't syntactically valid, the function raises an error.HTTP%A convenience constructor for a POST .It constructs a request and sets the body as well as the Content-Type and Content-Length headers. The contents of the body are forced to calculate the value for the Content-Length header.If the URL isn't syntactically valid, the function raises an error.HTTPgetResponseBody response takes the response of a HTTP requesting action and tries to extricate the body of the  response. If the request action returned an error, an IO exception is raised.HTTPgetResponseCode response takes the response of a HTTP requesting action and tries to extricate the status code of the  response. If the request action returned an error, an IO exception is raised.HTTP URL to fetchHTTPThe constructed requestHTTP URL to fetchHTTPThe constructed requestHTTPURL to POST toHTTPThe constructed requestHTTPURL to POST toHTTPContent-Type of bodyHTTPThe body of the requestHTTPThe constructed request,-./0dcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:987654312efghijklmnopqrs See LICENSE fileBSD$Ganesh Sittampalam  experimentalnon-portable (not tested)None>?tF)HTTP is the enumerated list of events that the browser internals will report to a user-defined event handler.HTTP BrowserEvent is the event record type that a user-defined handler, set via , will be passed. It indicates various state changes encountered in the processing of a given 0, along with timestamps at which they occurred.HTTP BrowserAction' is the IO monad, but carrying along a .HTTP BrowserState is the (large) record type tracking the current settings of the browser.HTTPdefaultCookieFilter is the initial cookie acceptance filter. It welcomes them all into the store :-)HTTPuserCookieFilter is a handy acceptance filter, asking the user if he/she is willing to accept an incoming cookie before adding it to the store.HTTP addCookie c9 adds a cookie to the browser state, removing duplicates.HTTPsetCookies cookies6 replaces the set of cookies known to the browser to cookies6. Useful when wanting to restore cookies used across  invocations.HTTP getCookies: returns the current set of cookies known to the browser.HTTPsetCookieFilter fn& sets the cookie acceptance filter to fn.HTTPgetCookieFilter. returns the current cookie acceptance filter.HTTPgetAuthorities return the current set of  Authoritys known to the browser.HTTPgetAuthorityGen( returns the current authority generatorHTTPsetAuthorityGen genAct sets the auth generator to genAct.HTTPsetAllowBasicAuth onOff, enables/disables HTTP Basic Authentication.HTTPsetMaxAuthAttempts mbMax? sets the maximum number of authentication attempts to do. If Nothing, revert to default max.HTTPgetMaxAuthAttempts+ returns the current max auth attempts. If Nothing!, the browser's default is used.HTTPsetMaxErrorRetries mbMax sets the maximum number of attempts at transmitting a request. If Nothing, rever to default max.HTTPgetMaxErrorRetries1 returns the current max number of error retries.HTTP browse act% is the toplevel action to perform a . Example use: %browse (request (getRequest yourURL)).HTTPgetBrowserState returns the current browser config. Useful for restoring state across s.HTTPwithBrowserAction st act performs act with  st.HTTPLifts an IO action into the  monad.HTTP setErrHandler sets the IO action to call when the browser reports running errors. To disable any such, set it to const (return ()).HTTP setOutHandler sets the IO action to call when the browser chatters info on its running. To disable any such, set it to const (return ()).HTTPsetAllowRedirects onOff toggles the willingness to follow redirects (HTTP responses with 3xx status codes).HTTPgetAllowRedirects8 returns current setting of the do-chase-redirects flag.HTTPsetMaxRedirects maxCount sets the maximum number of forwarding hops we are willing to jump through. A no-op if the count is negative; if zero, the max is set to whatever default applies. Notice that setting the max redirects count does not, enable following of redirects itself; use  to do so.HTTPgetMaxRedirects= returns the current setting for the max-redirect count. If Nothing, the Network.Browser's default is used.HTTPsetMaxPoolSize maxCount sets the maximum size of the connection pool that is used to cache connections between requestsHTTPgetMaxPoolSize gets the maximum size of the connection pool that is used to cache connections between requests. If Nothing, the Network.Browser's default is used.HTTP setProxy p will disable proxy usage if p is NoProxy. If p is Proxy proxyURL mbAuth, then proxyURL is interpreted as the URL of the proxy to use, possibly authenticating via  information in mbAuth.HTTPgetProxy returns the current proxy settings. If the auto-proxy flag is set to True, getProxy will perform the necessaryHTTPsetCheckForProxy flg, sets the one-time check for proxy flag to flg. If True, the session will try to determine the proxy server is locally configured. See  for details of how this done.HTTPgetCheckForProxy returns the current check-proxy setting. Notice that this may not be equal to True( if the session has set it to that via  and subsequently performed some HTTP protocol interactions. i.e., the flag return represents whether a proxy will be checked for again before any future protocol interactions.HTTPsetDebugLog mbFile turns off debug logging iff mbFile is Nothing . If set to  Just fStem=, logs of browser activity is appended to files of the form fStem-url-authority , i.e., fStem is just the prefix for a set of log files, one per host/authority.HTTPsetUserAgent ua sets the current  User-Agent: string to ua. It will be used if no explicit user agent header is found in subsequent requests.&A common form of user agent string is "name/version (details)". For example &"cabal-install/0.10.2 (HTTP 4000.1.2)". Including the version of this HTTP package can be helpful if you ever need to track down HTTP compatibility quirks. This version is available via . For more info see  'http://en.wikipedia.org/wiki/User_agent.HTTP getUserAgent returns the current  User-Agent: default string.HTTPsetEventHandler onBrowserEvent configures event handling. If onBrowserEvent is Nothing/, event handling is turned off; setting it to  Just onEv causes the onEv IO action to be notified of browser events during the processing of a request by the Browser pipeline.HTTPrequest httpRequest tries to submit the   httpRequest, to some HTTP server (possibly going via a proxy, see .) Upon successful delivery, the URL where the response was fetched from is returned along with the  itself.HTTPuriDefaultTo a b? returns a URI that is consistent with the first argument URI a, when read in the context of the second URI b. If the second argument is not sufficient context for determining a full URI then anarchy reins.wxyz{|}~wxyz{|}~ !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyzz{|}~/0123                                                                 $HTTP-4000.4.1-3DTEpZvXCRl3BZeEVl0WDWNetwork.BufferTypeNetwork.StreamNetwork.HTTP.HeadersNetwork.HTTP.CookieNetwork.HTTP.Base Network.TCPNetwork.StreamDebuggerNetwork.StreamSocketNetwork.HTTP.StreamNetwork.HTTP.HandleStreamNetwork.HTTP.AuthNetwork.HTTP.Proxy Network.HTTPNetwork.BrowserNetwork.HTTP.Base64Network.HTTP.MD5AuxNetwork.HTTP.Utils Paths_HTTPsetProxyNetworkBrowserBufferOpbuf_hGetbuf_hGetContentsbuf_hPut buf_hGetLine buf_empty buf_append buf_concat buf_fromStr buf_toStrbuf_snoc buf_splitAtbuf_spanbuf_isLineTerm buf_isEmpty BufferType bufferOpsstrictBufferOp lazyBufferOpstringBufferOp $fEqBufferOp$fBufferType[]$fBufferTypeByteString$fBufferTypeByteString0StreamreadLine readBlock writeBlockclose closeOnEndResult ConnError ErrorReset ErrorClosed ErrorParse ErrorMiscfailMisc failParsefailWithbindEfmapE$fShowConnError $fEqConnError HeaderSetter HasHeaders getHeaders setHeaders HeaderNameHdrCacheControl HdrConnectionHdrDate HdrPragmaHdrTransferEncoding HdrUpgradeHdrVia HdrAcceptHdrAcceptCharsetHdrAcceptEncodingHdrAcceptLanguageHdrAuthorization HdrCookie HdrExpectHdrFromHdrHostHdrIfModifiedSince HdrIfMatchHdrIfNoneMatch HdrIfRangeHdrIfUnmodifiedSinceHdrMaxForwardsHdrProxyAuthorizationHdrRange HdrReferer HdrUserAgentHdrAge HdrLocationHdrProxyAuthenticate HdrPublic HdrRetryAfter HdrServer HdrSetCookieHdrTE HdrTrailerHdrVary HdrWarningHdrWWWAuthenticateHdrAllowHdrContentBaseHdrContentEncodingHdrContentLanguageHdrContentLengthHdrContentLocation HdrContentMD5HdrContentRangeHdrContentTypeHdrETag HdrExpiresHdrLastModifiedHdrContentTransferEncoding HdrCustomHeaderhdrNamehdrValuemkHeader headerMap insertHeaderinsertHeaderIfMissing replaceHeader insertHeadersretrieveHeaders findHeader lookupHeader parseHeader parseHeaders$fShowHeaderName$fEqHeaderName $fShowHeaderCookieMkCookieckDomainckNameckValueckPath ckComment ckVersioncookiesToHeader cookieMatchprocessCookieHeaders $fEqCookie $fShowCookie $fReadCookieRequestNormalizerNormalizeRequestOptions normDoClose normForProxy normUserAgent normCustomsResponseNextStepContinueRetryDone ExpectEntity DieHorriblyResponserspCode rspReason rspHeadersrspBody RequestData ResponseData ResponseCodeRequestrqURIrqMethod rqHeadersrqBody HTTPResponse HTTPRequestResponse_StringRequest_String RequestMethodHEADPUTGETPOSTDELETEOPTIONSTRACECONNECTCustom URIAuthorityuserpasswordhostportparseURIAuthorityuriToAuthorityStringuriAuthToString uriAuthPort failHTTPS reqURIAuth httpVersionlibUAdefaultUserAgenthttpPackageVersiondefaultGETRequestdefaultGETRequest_ mkRequestsetRequestBodyparseRequestHeadparseResponseHeadgetRequestVersionsetRequestVersiongetResponseVersionsetResponseVersion matchResponse urlDecode urlEncode urlEncodeVarsgetAuthnormalizeRequestURIdefaultNormalizeRequestOptionsnormalizeRequestsplitRequestURInormalizeHostHeader findConnCloselinearTransferhopefulTransferchunkedTransferuglyDeathTransferreadTillEmpty1readTillEmpty2catchIOcatchIO_responseParseError$fShowRequestMethod$fHasHeadersRequest $fShowRequest$fHasHeadersResponse$fShowResponse$fEqRequestMethod$fEqURIAuthority$fShowURIAuthorityHStream openStreamopenSocketStream closeQuick StreamHooks hook_readLinehook_readBlockhook_writeBlock hook_close hook_nameEndPointepHostepPort HandleStream ConnectionhstreamToConnection nullHookssetStreamHooksgetStreamHooks openTCPPortopenTCPConnectionsocketConnection isConnectedToisTCPConnectedTo $fEqEndPoint$fEqStreamHooks $fHStream[]$fStreamConnection$fHStreamByteString$fHStreamByteString0$fEqConnStreamDebugger debugStreamdebugByteStream$fStreamStreamDebuggerhandleSocketErrormyrecv$fStreamSocket simpleHTTP simpleHTTP_sendHTTPsendHTTP_notify receiveHTTP respondHTTPsimpleHTTP_debugQopQopAuth QopAuthInt AlgorithmAlgMD5 AlgMD5sess Challenge ChalBasic ChalDigestchRealmchDomainchNoncechOpaquechStale chAlgorithmchQop Authority AuthBasic AuthDigestauRealm auUsername auPasswordauSiteauNonce auAlgorithmauDomainauOpaqueauQop withAuthorityheaderToChallenge$fShowAlgorithm$fEqQop $fShowQop $fEqAlgorithmProxyNoProxynoProxy fetchProxy parseProxy getRequest headRequest postRequestpostRequestWithBodygetResponseBodygetResponseCodeFormFormVarBrowserEventTypeOpenConnectionReuseConnection RequestSent ResponseEndResponseFinish BrowserEventbrowserTimestampbrowserRequestIDbrowserRequestURIbrowserEventType RequestID BrowserAction BrowserStatedefaultCookieFilteruserCookieFilter addCookie setCookies getCookiessetCookieFiltergetCookieFiltergetAuthoritiessetAuthorities addAuthoritygetAuthorityGensetAuthorityGensetAllowBasicAuthgetAllowBasicAuthsetMaxAuthAttemptsgetMaxAuthAttemptssetMaxErrorRetriesgetMaxErrorRetriesbrowsegetBrowserStatewithBrowserStateioAction setErrHandler setOutHandlerouterrsetAllowRedirectsgetAllowRedirectssetMaxRedirectsgetMaxRedirectssetMaxPoolSizegetMaxPoolSizegetProxysetCheckForProxygetCheckForProxy setDebugLog setUserAgent getUserAgentsetEventHandlerrequest uriDefaultTo formToRequest$fShowBrowserState$fFunctorBrowserAction$fApplicativeBrowserAction$fMonadBrowserAction$fMonadIOBrowserAction%$fMonadStateBrowserStateBrowserAction$fMonadFailBrowserActionchop72OctetencodedecodeMD5finishedget_nextlen_padWordListBoolListStrABCDZord64md5md5smd5icrlflfspsplittrimtrimLbase GHC.UnicodeisSpacetrimRsplitByreadsOne Text.Readread dropWhileTail chopAtDelimtoUTF8BS fromUTF8BSversion getBinDir getLibDir getDynLibDir getDataDir getLibexecDir getSysconfDirgetDataFileNameGHC.ShowShowGHC.Num*&network-3.1.2.7-3UJXfpkdLcdBrRVDkXEXqjNetwork.Socket.TypesSocket