Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. reqToken :: YesodRequest -> !Maybe Text

    yesod-core Yesod.Core.Types

    A random, session-specific token used to prevent CSRF attacks.

  2. reqWaiRequest :: YesodRequest -> !Request

    yesod-core Yesod.Core.Types

    No documentation available.

  3. data AcceptRequest

    websockets Network.WebSockets

    This datatype allows you to set options for acceptRequestWith. It is strongly recommended to use defaultAcceptRequest and then modify the various fields, that way new fields introduced in the library do not break your code.

  4. AcceptRequest :: !Maybe ByteString -> Headers -> AcceptRequest

    websockets Network.WebSockets

    No documentation available.

  5. CloseRequest :: Word16 -> ByteString -> ConnectionException

    websockets Network.WebSockets

    The peer has requested that the connection be closed, and included a close code and a reason for closing. When receiving this exception, no more messages can be sent. Also, the server is responsible for closing the TCP connection once this exception is received. See http://tools.ietf.org/html/rfc6455#section-7.4 for a list of close codes.

  6. MalformedRequest :: RequestHead -> String -> HandshakeException

    websockets Network.WebSockets

    The request was somehow invalid (missing headers or wrong security token)

  7. data RejectRequest

    websockets Network.WebSockets

    Parameters that allow you to tweak how a request is rejected. Please use defaultRejectRequest and modify fields using record syntax so your code will not break when new fields are added.

  8. RejectRequest :: Int -> ByteString -> Headers -> ByteString -> RejectRequest

    websockets Network.WebSockets

    No documentation available.

  9. data Request

    websockets Network.WebSockets

    A request with a body

  10. Request :: RequestHead -> ByteString -> Request

    websockets Network.WebSockets

    No documentation available.

Page 247 of many | Previous | Next