GaloisInc / curl

A Haskell binding to the curl library
Other
30 stars 18 forks source link

Added option to support HTTP/2 #13

Open alcidesv opened 9 years ago

alcidesv commented 9 years ago

Just one line....Code like the following now works:

main= curlGet 
    "https://api.httptwo.com/get-protocol/"
    [   
        (CurlHttpVersion HttpVersion20), 
        (CurlURL "https://api.httptwo.com/get-protocol/"),
        (CurlHttpHeaders ["origin:www.httptwo.com"])
    ]