• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Network/HTTP/Client/H10-Dec-2015-432318

bench/H16-Jan-2018-2117

test/H05-Feb-2018-5345

ChangeLog.mdH A D05-Feb-20181.4 KiB7642

LICENSEH A D10-Dec-20151.1 KiB2116

README.mdH A D19-Dec-2016446 1914

Setup.hsH A D10-Dec-201546 32

http-client-tls.cabalH A D03-May-20222 KiB6056

README.md

1## http-client-tls
2
3Full tutorial docs are available at:
4https://haskell-lang.org/library/http-client
5
6Use the http-client package with the pure-Haskell tls package for secure
7connections. For the most part, you'll just want to replace
8`defaultManagerSettings` with `tlsManagerSettings`, e.g.:
9
10```haskell
11import Network.HTTP.Client
12import Network.HTTP.Client.TLS
13
14main :: IO ()
15main = do
16    manager <- newManager tlsManagerSettings
17    ...
18```
19