Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. settingsOnException :: Settings -> Maybe Request -> SomeException -> IO ()

    warp Network.Wai.Handler.Warp.Internal

    What to do with exceptions thrown by either the application or server. Default: ignore server-generated exceptions (see InvalidRequest) and print application-generated applications to stderr.

  2. settingsOnExceptionResponse :: Settings -> SomeException -> Response

    warp Network.Wai.Handler.Warp.Internal

    A function to create Response when an exception occurs. Default: 500, text/plain, "Something went wrong" Since 2.0.3

  3. settingsOnOpen :: Settings -> SockAddr -> IO Bool

    warp Network.Wai.Handler.Warp.Internal

    What to do when a connection is open. When False is returned, the connection is closed immediately. Otherwise, the connection is going on. Default: always returns True.

  4. settingsPort :: Settings -> Port

    warp Network.Wai.Handler.Warp.Internal

    Port to listen on. Default value: 3000

  5. settingsProxyProtocol :: Settings -> ProxyProtocol

    warp Network.Wai.Handler.Warp.Internal

    Specify usage of the PROXY protocol. Since 3.0.5

  6. settingsServerName :: Settings -> ByteString

    warp Network.Wai.Handler.Warp.Internal

    Default server name if application does not set one. Since 3.0.2

  7. settingsServerPushLogger :: Settings -> Request -> ByteString -> Integer -> IO ()

    warp Network.Wai.Handler.Warp.Internal

    A HTTP/2 server push log function. Default: no action. Since 3.2.7

  8. settingsSlowlorisSize :: Settings -> Int

    warp Network.Wai.Handler.Warp.Internal

    Size of bytes read to prevent Slowloris protection. Default value: 2048 Since 3.1.2

  9. settingsTimeout :: Settings -> Int

    warp Network.Wai.Handler.Warp.Internal

    Timeout value in seconds. Default value: 30

  10. setInput :: MonadParsec e s m => s -> m ()

    megaparsec Text.Megaparsec

    setInput input continues parsing with input.

Page 171 of many | Previous | Next