ȍo      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                  ! " # $ % & ' ( ) * + , - . / 0 1 23456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnSafe35(opqrstuvwxyz{|}~opqrstuvwxyz}!opqrstuvwxyz{|}~Safe35  ,(c) Dominic Steinitz 2005, Warrick Gray 2002#BSD-style (see the file ReadMe.tex)!dominic.steinitz@blueyonder.co.uk experimentalportableSafe35ACut up a string into 72 char lines, each line terminated by CRLF.  See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)Safe35Streams 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 ;)=This is the type returned by many exported network functions.hTrue => shutdown the connection when response has been read / end-of-stream has been reached.      See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)Safe35 crlf) is our beloved two-char line terminator.lf; is a tolerated line terminator, per RFC 2616 section 19.3.sp$ lets you save typing one character.split 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.trim str. removes leading and trailing whitespace from str. trimL str+ removes leading whitespace (as defined by ) from str. trimL str, removes trailing whitespace (as defined by ) from str.splitMany delim ls removes the delimiter delim from ls.readsOne f def str tries to  str-, taking the first result and passing it to f . If the  doesn't succeed, return def.dropWhileTail p ls" chops off trailing elements from ls until p returns False.chopAtDelim elt ls breaks up ls" into two at first occurrence of elt; elt is elided too. If eltE does not occur, the second list is empty and the first is equal to ls.   See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)Safe35 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.HTTP  HeaderNameX type, a Haskell data constructor for each specification-defined header, prefixed with Hdr% and CamelCased, (i.e., eliding the -I 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.H#MIME entity headers (for sub-parts)I0Allows for unrecognised or experimental headers.JThe Header' data type pairs header names & values.N3Header constructor as a function, hiding above rep.O headerMapL is a straight assoc list for translating between header names and values.PinsertHeader 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 R if you want to avoid this.)QinsertHeaderIfMissing hdr val x; adds the new header only if no previous header with name hdr exists in x.RreplaceHeader hdr val o replaces the header hdr with the value val, dropping any existing SinsertHeaders hdrs x appends multiple headers to x's existing set.TretrieveHeaders hdrNm x gets a list of headers with  hdrNm.UfindHeader hdrNm x looks up hdrNm in x3, returning the first header that matches, if any.VlookupHeader hdr hdrs# locates the first header matching hdr in the list hdrs.W$parseHeader headerNameAndValueString tries to unscramble a  header: value pairing and returning it as a J.XparseHeaders 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.J !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXH !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXHJKNLM !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIPQSTRUVWXO4 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXSee LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)Safe35YCookieh is the Haskell representation of HTTP cookie values. See its relevant specs for authoritative details.acookieToHeaders ck serialises Cookies to an HTTP request header.LTurn a list of cookies into a key=value pair list, separated by semicolons.bcookieMatch (domain,path) ckD performs the standard cookie match wrt the given domain and path. c processCookieHeaders dom hdrs headerToCookies dom hdr accYZ[\]^_`abc YZ[\]^_`abc YZ[\]^_`bac YZ[\]^_`abc=Abstract representation of request and response buffer types.See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)Safe35dBufferOp 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 for tThe  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.vstrictBufferOp is the d definition over  ByteStrings, the non-lazy kind.w lazyBufferOp is the d definition over  ByteStrings, the non-strict kind.xstringBufferOp is the d definition over Strings. It is defined in terms of strictBufferOp& operations, unpacking/converting to String when needed.defghijklmnopqrstuvwxdefghijklmnopqrstuvwxtudefghijklmnopqrsvwx defghijklmnopqrstuvwxSee LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)Safe35N!yRequestNormalizerV is the shape of a (pure) function that rewrites a request into some normalized form.zNormalizeRequestOptionsD brings together the various defaulting/normalization options over s. Use % for the standard selection of optionAn 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. RequestDatag contains the head of a HTTP request; method, its URL along with the auxillary/supporting header data. ResponseDatan contains the head of a response payload; HTTP response code, accompanying text description + header fields./For easy pattern matching, HTTP response codes xyz are represented as (x,y,z).An HTTP Request. The ^ instance of this type is used for message serialisation, which means no body data is output..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).+The HTTP request method, to be used in the r object. We are missing a few of the stranger methods, but these are not really necessary until we add full TLS."Parse the authority part of a URL. RFC 1732, section 3.1: //<user>:<password>@<host>:<port>/<url-path> Some or all of the parts "<user>:<password>@", ":<password>", ":<port>", and "/<url-path>" may be excluded.Deprecated. Use +A default user agent string. The string is "haskell-HTTP/$version" where $version% is the version of this HTTP package.3The 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.'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.getRequestVersion req3 returns the HTTP protocol version of the request req. If Nothing, the default  can be assumed.setRequestVersion v req& returns a new request, identical to req#, but with its HTTP version set to v.getResponseVersion rsp4 returns the HTTP protocol version of the response rsp. If Nothing, the default  can be assumed.setResponseVersion v rsp' returns a new response, identical to rsp#, but with its HTTP version set to v.GEncode a single Haskell Char to a list of Word8 values, in UTF8 format.)Shamelessly stolen from utf-8string-0.3.7KDecode a UTF8 string packed into a list of Word8 values, directly to String)Shamelessly stolen from utf-8string-0.3.7 getAuth req< fishes out the authority portion of the URL in a request's Host header.normalizeRequest 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.normalizeUserAgent ua x req augments the request req with a User-Agent: ua header if req doesn't already have a a  User-Agent: set.!normalizeConnectionClose opts req sets the header Connection: close% to indicate one-shot behavior iff  normDoClose is True,. i.e., it then _replaces_ any an existing  Connection: header in req.normalizeBasicAuth opts req sets the header Authorization: Basic... if the "user:pass" part is present in the " http://user:passWhost/path" of the URI. If Authorization header was present already it is not replaced.normalizeHostURI forProxy reqh rewrites your request to have it follow the expected formats by the receiving party (proxy or server.)3Used when we know exactly how many bytes to expect.Used 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.bA necessary feature of HTTP/1.1 Also the only transfer variety likely to return any footers.rMaybe in the future we will have a sensible thing to do here, at that time we might want to change the name.CRemove leading crlfs then call readTillEmpty2 (not required by RFC)Read 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. catchIO a h[ handles IO action exceptions throughout codebase; version-specific tweaks better go here.qyz{|}~Xyz{|}~Xz{|}~yOyz{|}~ See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)None35HStream 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<s as the payload representation isn't fixed, but overloaded.%The library comes with instances for  ByteStrings and StringV, but should you want to plug in your own payload representation, defining your own HStream( instance _should_ be all that it takes.The ( newtype is a wrapper that allows us to make connections an instance of the Stream class, without GHC extensions. While this looks sort of like a generic reference to the transport layer it is actually TCP specific, which can be seen in the implementation of the 'Stream Connection' instance.openTCPPort uri port4 establishes a connection to a remote host, using  getHostByNameQ which possibly queries the DNS system, hence may trigger a network connection.socketConnection, like openConnection but using a pre-existing .Checks both that the underlying Socket is connected and that the connection peer matches the given host name (which is recorded locally).?" See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)None35!Allows stream logging. Refer to  below.XWraps a stream with logging I/O. The first argument is a filename which is opened in  AppendMode.See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)None35(Exception handler for socket operations.    See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)Safe35 Algorithm# controls the digest algorithm to, MD5 or  MD5Session. AuthorityL specifies the HTTP Authentication method to use for a given domain/realm; Basic or Digest.withAuthority auth req( generates a credentials value from the auth ', in the context of the given request.hIf a client nonce was to be used then this function might need to be of type ... -> BrowserAction StringheaderToChallenge base www_auth tries to convert the WWW-Authenticate header www_auth into a  value.&             "                 See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)Safe35*HTTP proxies (or not) are represented via =, specifying if a proxy should be used for the request (see )Don't use a proxy.Use 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.envProxyString; locates proxy server settings by looking up env variable  HTTP_PROXY? (or its lower-case equivalent.) If no mapping found, returns Nothing. proxyString tries to locate the user's proxy server setting. Consults environment variable, and in case of Windows, by querying the Registry (cf. registryProxyString.)fetchProxy flg< gets the local proxy settings and parse the string into a ProxyV value. If you want to be informed of ill-formed proxy configuration strings, supply True for flg'. Proxy settings are sourced from the  HTTP_PROXYx environment variable, and in the case of Windows platforms, by consulting IE/WinInet's proxy setting in the Registry.parseProxy str) translates a proxy server string into a Proxy value; returns Nothing if not well-formed.2tidy up user portion, don't want the trailing "@".   See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)None35 simpleHTTP9 transmits a resource across a non-persistent connection.simpleHTTP_debug debugFile req behaves like 2, but logs the HTTP operation via the debug file  debugFile.Like ), but acting on an already opened stream.sendHTTP hStream httpRequest transmits  httpRequest over hStreaml, but does not alter the status of the connection, nor request it to be closed upon receiving the response.*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.receiveHTTP hStream reads a  from the  hStream 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 <ganesh@earth.li> experimentalnon-portable (not tested)None35  simpleHTTP req transmits the  req by opening a direct5, non-persistent connection to the HTTP server that reqR 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: psimpleHTTP (getRequest "http://hackage.haskell.org/") simpleHTTP (getRequest "http://hackage.haskell.org:8012/")! Identical to  ), but acting on an already opened stream."sendHTTP hStream httpRequest transmits  httpRequest (after normalization) over hStreaml, but does not alter the status of the connection, nor request it to be closed upon receiving the response.#*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.$receiveHTTP hStream reads a  from the  hStream% respondHTTP hStream httpResponse transmits an HTTP  over the  hStream]. It could be used to implement simple web server interactions, performing the dual role to ".&$A convenience constructor for a GET .CIf the URL isn't syntactically valid, the function raises an error.'%A convenience constructor for a HEAD .CIf the URL isn't syntactically valid, the function raises an error.(%A convenience constructor for a POST .CIf the URL isn't syntactically valid, the function raises an error.)%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.CIf the URL isn't syntactically valid, the function raises an error.*getResponseBody responseX takes the response of a HTTP requesting action and tries to extricate the body of the  responseF. If the request action returned an error, an IO exception is raised.+getResponseBody response_ takes the response of a HTTP requesting action and tries to extricate the status code of the  responseF. If the request action returned an error, an IO exception is raised.  !"#$%& URL to fetchThe constructed request' URL to fetchThe constructed request(URL to POST toThe constructed request)URL to POST toContent-Type of bodyThe body of the requestThe constructed request*+ !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXyz{|}~ !"#$%&'()*+  !"#$%&'()*+  !"#$%&'()*+ See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)None35,ESimple way to transmit a resource across a non-persistent connection.-Like ,), but acting on an already opened stream.0hReceive and parse a HTTP request from the given Stream. Should be used for server side interactions.1Very simple function, send a HTTP response over the given stream. This could be improved on to use different transfer types. ,-./ !01 ,-./01,-./01 ,-./ !01See LICENSE fileBSD$Ganesh Sittampalam <ganesh@earth.li> experimentalnon-portable (not tested)None3457C;55j is the enumerated list of events that the browser internals will report to a user-defined event handler.; BrowserEvent@ is the event record type that a user-defined handler, set via k_, will be passed. It indicates various state changes encountered in the processing of a given A0, along with timestamps at which they occurred." RequestState is an internal tallying type keeping track of various per-connection counters, like the number of authorization attempts and forwards we've gone through.#number of 401 responses so far$number of redirects so far%number of retries so far& whether to pre-empt 401 responseB BrowserAction' is the IO monad, but carrying along a C.C BrowserStateJ is the (large) record type tracking the current settings of the browser.DdefaultCookieFilterO is the initial cookie acceptance filter. It welcomes them all into the store :-)EuserCookieFilter is a handy acceptance filter, asking the user if he/she is willing to accept an incoming cookie before adding it to the store.F addCookie c9 adds a cookie to the browser state, removing duplicates.GsetCookies cookies6 replaces the set of cookies known to the browser to cookies6. Useful when wanting to restore cookies used across V invocations.H getCookies: returns the current set of cookies known to the browser.IsetCookieFilter fn& sets the cookie acceptance filter to fn.JgetCookieFilter. returns the current cookie acceptance filter.'LReturn authorities for a given domain and path. Assumes "dom" is lower caseKgetAuthorities return the current set of  Authoritys known to the browser.NgetAuthorityGen( returns the current authority generatorOsetAuthorityGen genAct sets the auth generator to genAct.PsetAllowBasicAuth onOff, enables/disables HTTP Basic Authentication.RsetMaxAuthAttempts mbMax? sets the maximum number of authentication attempts to do. If Nothing, rever to default max.SgetMaxAuthAttempts+ returns the current max auth attempts. If Nothing!, the browser's default is used.TsetMaxErrorRetries mbMaxD sets the maximum number of attempts at transmitting a request. If Nothing, rever to default max.UgetMaxErrorRetries1 returns the current max number of error retries.(2Retrieve a likely looking authority for a Request.))Asking the user to respond to a challengeV browse act% is the toplevel action to perform a B. Example use: %browse (request (getRequest yourURL)).*+The default browser state has the settings WgetBrowserStateH returns the current browser config. Useful for restoring state across Bs.XwithBrowserAction st act performs act with C st.+nextRequest act performs the browser action actO as the next request, i.e., setting up a new request context before doing so.YLifts an IO action into the B monad.Z setErrHandlerf sets the IO action to call when the browser reports running errors. To disable any such, set it to const (return ()).[ setOutHandlerl sets the IO action to call when the browser chatters info on its running. To disable any such, set it to const (return ()).^setAllowRedirects onOffU toggles the willingness to follow redirects (HTTP responses with 3xx status codes)._getAllowRedirects8 returns current setting of the do-chase-redirects flag.`setMaxRedirects maxCount sets the maxiumum 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.agetMaxRedirects= returns the current setting for the max-redirect count. If Nothing, the Network.Browser's default is used.bsetMaxPoolSize maxCounta sets the maximum size of the connection pool that is used to cache connections between requestscgetMaxPoolSizeg 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.d setProxy p will disable proxy usage if p is NoProxy. If p is Proxy proxyURL mbAuth, then proxyURLO is interpreted as the URL of the proxy to use, possibly authenticating via  information in mbAuth.egetProxyG returns the current proxy settings. If the auto-proxy flag is set to True, getProxy will perform the necessary fsetCheckForProxy flg, sets the one-time check for proxy flag to flg. If TrueQ, the session will try to determine the proxy server is locally configured. See  for details of how this done.ggetCheckForProxyP returns the current check-proxy setting. Notice that this may not be equal to True( if the session has set it to that via f 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.hsetDebugLog 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., fStemC is just the prefix for a set of log files, one per host/authority.isetUserAgent ua sets the current  User-Agent: string to uaT. 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 compatability quirks. This version is available via . For more info see  'http://en.wikipedia.org/wiki/User_agent.j getUserAgent returns the current  User-Agent: default string.ksetEventHandler onBrowserEvent configures event handling. If onBrowserEvent is Nothing/, event handling is turned off; setting it to  Just onEv causes the onEvi IO action to be notified of browser events during the processing of a request by the Browser pipeline.,UThe default number of hops we are willing not to go beyond for request forwardings.->The default number of error retries we are willing to perform..TThe default maximum HTTP Authentication attempts we will make for a single request./XThe default setting for auto-proxy detection. You may change this within a session via setAutoProxyDetectB. To avoid initial backwards compatibility issues, leave this as False.lrequest httpRequest tries to submit the   httpRequest, to some HTTP server (possibly going via a proxy, see df.) Upon successful delivery, the URL where the response was fetched from is returned along with the  itself.0IInternal helper function, explicitly carrying along per-request counts.1,The internal request handling state machine.2IDefault maximum number of open connections we are willing to have active.3Return TrueC iff the package is able to handle requests and responses over it.muriDefaultTo a b? returns a URI that is consistent with the first argument URI a, when read in the context of the second URI bc. If the second argument is not sufficient context for determining a full URI then anarchy reins.r23456789:;<=>?@A"4#$%&B56C789:;<=>?@ABCDEFGHIJDEFGHKIJ'KLMNOPQRSTUL()MV*WX+YZ[\]^_`abcdefghijNkOP,-./l01Q2RSTU3mnVfYZ[\]^_`     23456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnjCBVlWX^_`a      KLMNOPQTUbcRSIJDEYZ[\]^_`HGFZ[k;<=>?@56789:Adefghji\]Ynm234L23456789:;<=>?@A"4#$%&B56C789:;<=>?@ABCDEFGHIJDEFGHKIJ'KLMNOPQRSTUL()MV*WX+YZ[\]^_`abcdefghijNkOP,-./l01Q2RSTU3mnVW !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_``abcdefghijklmnopqrstuvwxyyz{|}~                                     ! " # $ % & ' ! # $ % & ' ( ) * + , - ! # $ % & '../01234566789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijkllmmnnoopqrstuvwxyz{|}~    t                     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHTTP_4dRmKx1n9Za9A2yJU1YmOVNetwork.StreamNetwork.HTTP.HeadersNetwork.HTTP.CookieNetwork.BufferTypeNetwork.HTTP.Base Network.TCPNetwork.StreamDebuggerNetwork.StreamSocketNetwork.HTTP.AuthNetwork.HTTP.ProxyNetwork.HTTP.HandleStream Network.HTTPNetwork.HTTP.StreamNetwork.BrowserNetwork.HTTP.MD5Aux Paths_HTTPNetwork.HTTP.Base64Network.HTTP.UtilssetProxyNetworkBrowserStreamreadLine readBlock writeBlockclose closeOnEndResult ConnError ErrorReset ErrorClosed ErrorParse ErrorMiscfailMisc failParsefailWithbindEfmapE 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 parseHeadersCookieMkCookieckDomainckNameckValueckPath ckComment ckVersioncookiesToHeader cookieMatchprocessCookieHeadersBufferOpbuf_hGetbuf_hGetContentsbuf_hPut buf_hGetLine buf_empty buf_append buf_concat buf_fromStr buf_toStrbuf_snoc buf_splitAtbuf_spanbuf_isLineTerm buf_isEmpty BufferType bufferOpsstrictBufferOp lazyBufferOpstringBufferOpRequestNormalizerNormalizeRequestOptions 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_responseParseErrorHStream openStreamopenSocketStream closeQuick StreamHooks hook_readLinehook_readBlockhook_writeBlock hook_close hook_nameEndPointepHostepPort HandleStream ConnectionhstreamToConnection nullHookssetStreamHooksgetStreamHooks openTCPPortopenTCPConnectionsocketConnection isConnectedToisTCPConnectedToStreamDebugger debugStreamdebugByteStreamhandleSocketErrormyrecvQopQopAuth QopAuthInt AlgorithmAlgMD5 AlgMD5sess Challenge ChalBasicchRealm ChalDigestchDomainchNoncechOpaquechStale chAlgorithmchQop Authority AuthBasicauRealm auUsername auPasswordauSite AuthDigestauNonce auAlgorithmauDomainauOpaqueauQop withAuthorityheaderToChallengeProxyNoProxynoProxy fetchProxy parseProxy simpleHTTPsimpleHTTP_debug simpleHTTP_sendHTTPsendHTTP_notify receiveHTTP respondHTTP getRequest headRequest postRequestpostRequestWithBodygetResponseBodygetResponseCodeFormFormVarBrowserEventTypeOpenConnectionReuseConnection RequestSent ResponseEndResponseFinish BrowserEventbrowserTimestampbrowserRequestIDbrowserRequestURIbrowserEventType RequestID BrowserAction BrowserStatedefaultCookieFilteruserCookieFilter addCookie setCookies getCookiessetCookieFiltergetCookieFiltergetAuthoritiessetAuthorities addAuthoritygetAuthorityGensetAuthorityGensetAllowBasicAuthgetAllowBasicAuthsetMaxAuthAttemptsgetMaxAuthAttemptssetMaxErrorRetriesgetMaxErrorRetriesbrowsegetBrowserStatewithBrowserStateioAction setErrHandler setOutHandlerouterrsetAllowRedirectsgetAllowRedirectssetMaxRedirectsgetMaxRedirectssetMaxPoolSizegetMaxPoolSizegetProxysetCheckForProxygetCheckForProxy setDebugLog setUserAgent getUserAgentsetEventHandlerrequest uriDefaultTo formToRequestMD5get_nextlen_padfinishedWordListBoolListStrABCDRotationXYZZord64rotLmd5md5smd5imd5_main md5_do_block md5_roundmd5_inner_functionmd5_fmd5_gmd5_hmd5_i magic_numbersroundsabcd_to_stringdisplay_32bits_as_hexabcd_to_integerrev_numstring_to_word32sbools_to_word32slength_to_chars $fNumABCD $fMD5WordList$fMD5Str $fMD5BoolListversionbindirlibdirdatadir libexecdir sysconfdir getBinDir getLibDir getDataDir getLibexecDir getSysconfDirgetDataFileNamechop72Octet encodeArray int4_char3 char3_int4enc1 quadrupletsencdcdencodedecode$fErrorConnErrorcrlflfspsplittrimtrimLbase GHC.UnicodeisSpacetrimRsplitByreadsOne Text.Readread dropWhileTail chopAtDelim$fShowHeaderName $fShowHeadermkCookieHeaderValueheaderToCookies quotedstringword $fEqCookie $fEqBufferOp$fBufferType[]$fBufferTypeByteString$fBufferTypeByteString0GHC.ShowShowGHC.Num* encodeCharnormalizeUserAgentnormalizeConnectionClosenormalizeBasicAuthnormalizeHostURI pURIAuthority rfc2732host pUserInfobefore orNothing rqMethodMaptoBufOps withVersiongetHttpVersionsetHttpVersiondropHttpVersion isHttpVersionreplacement_characterchunkedTransferC$fHasHeadersResponse$fShowResponse$fHasHeadersRequest $fShowRequest$fShowRequestMethodnetwo_F6mK9sCIw3M5SbZMt2lUQENetwork.Socket.TypesSocketConnMkConnconnSock connHandle connBuffer connInput connEndPoint connHooks connCloseEOF ConnClosedgetRef connHooks'openTCPConnection_socketConnection_closeConnection readBlockBS readLineBS writeBlockBScloseItcloseEOFbufferGetBlockbufferPutBlockbufferReadLine onNonClosedDo $fHStream[]$fStreamConnection$fHStreamByteString$fHStreamByteString0$fEqStreamHooks $fEqEndPointDbgdebugStreamHooks$fStreamStreamDebuggerreadBlockSocketreadLineSocketwriteBlockSocket$fStreamSocketstringToOctets base64encodekd$fShowAlgorithmenvProxyString proxyString fixUserInfowindowsProxyString uri2proxysendMainswitchResponsegetResponseHead headerName ifChunkeddebug httpLogFile RequestState reqDenies reqRedirects reqRetries reqStopOnDeny getAuthForanticipateChallengechallengeToAuthoritydefaultBrowserState nextRequestdefaultMaxRetriesdefaultMaxErrorRetriesdefaultMaxAuthAttemptsdefaultAutoProxyDetectrequest' dorequestdefaultMaxPoolSizesupportedSchemeBAunBABSbsErrbsOut bsCookiesbsCookieFilterbsAuthorityGen bsAuthoritiesbsAllowRedirectsbsAllowBasicAuthbsMaxRedirectsbsMaxErrorRetriesbsMaxAuthAttempts bsMaxPoolSizebsConnectionPool bsCheckProxybsProxybsDebugbsEvent bsRequestID bsUserAgent getCookiesFor pickChallengerunBAnullRequestStatebuildBrowserEvent reportEventupdateConnectionPoolcleanConnectionPool handleCookieshandleConnectionClose allowRedirect$fShowBrowserState