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.
settingsHTTP2Enabled :: Settings -> Boolwarp Network.Wai.Handler.Warp.Internal Whether to enable HTTP2 ALPN/upgrades. Default: True Since 3.1.7
settingsHost :: Settings -> HostPreferencewarp Network.Wai.Handler.Warp.Internal Default value: HostIPv4
settingsInstallShutdownHandler :: Settings -> IO () -> IO ()warp Network.Wai.Handler.Warp.Internal An action to install a handler (e.g. Unix signal handler) to close a listen socket. The first argument is an action to close the listen socket. Default: no action Since 3.0.1
settingsLogger :: Settings -> Request -> Status -> Maybe Integer -> IO ()warp Network.Wai.Handler.Warp.Internal A log function. Default: no action. Since 3.1.10
settingsManager :: Settings -> Maybe Managerwarp Network.Wai.Handler.Warp.Internal Use an existing timeout manager instead of spawning a new one. If used, settingsTimeout is ignored. Default is Nothing
settingsMaxBuilderResponseBufferSize :: Settings -> Intwarp Network.Wai.Handler.Warp.Internal Determines the maxium buffer size when sending Builder responses (See responseBuilder). When sending a builder response warp uses a 16 KiB buffer to write the builder to. When that buffer is too small to fit the builder warp will free it and create a new one that will fit the builder. To protect against allocating too large a buffer warp will error if the builder requires more than this maximum. Default: 1049_000_000 = 1 MiB. Since 3.3.22
settingsMaxTotalHeaderLength :: Settings -> Intwarp Network.Wai.Handler.Warp.Internal Determines the maximum header size that Warp will tolerate when using HTTP/1.x. Since 3.3.8
settingsMaximumBodyFlush :: Settings -> Maybe Intwarp Network.Wai.Handler.Warp.Internal See setMaximumBodyFlush. Since 3.0.3
settingsNoParsePath :: Settings -> Boolwarp Network.Wai.Handler.Warp.Internal Perform no parsing on the rawPathInfo. This is useful for writing HTTP proxies. Default: False Since 2.0.3
settingsOnClose :: Settings -> SockAddr -> IO ()warp Network.Wai.Handler.Warp.Internal What to do when a connection is close. Default: do nothing.