]> git.rkrishnan.org Git - functorrent.git/commitdiff
Remove the redundant withSocketsDo call wrapping simpleHTTP
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 3 May 2015 09:14:58 +0000 (14:44 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 3 May 2015 09:14:58 +0000 (14:44 +0530)
simpleHTTP calls withSocketsDo deep inside, so no need to wrap
it outside.

src/FuncTorrent/Network.hs

index 001fe0ee90c34308fb1afb8f5ea86becd171f1ac..eac69c9e32357f42023e0c6f702081039fb32c85 100644 (file)
@@ -11,7 +11,6 @@ import Data.ByteString (ByteString)
 import Data.ByteString.Char8 as BC (pack, unpack, concat, intercalate)
 import Network.HTTP (simpleHTTP, defaultGETRequest_, getResponseBody)
 import Network.URI (parseURI)
-import Network.Socket (withSocketsDo)
 
 -- | Make a query string from a alist of k, v
 -- TODO: Url encode each argument
@@ -19,7 +18,7 @@ mkParams :: [(String, ByteString)] -> ByteString
 mkParams params = BC.intercalate "&" [concat [pack f, "=", s] | (f,s) <- params]
 
 get :: String -> [(String, ByteString)] -> IO ByteString
-get url args = withSocketsDo $ simpleHTTP (defaultGETRequest_ url') >>= getResponseBody
+get url args = simpleHTTP (defaultGETRequest_ url') >>= getResponseBody
     where url' = case parseURI $ unpack $ concat [pack url, "?", qstr] of
                    Just x -> x
                    _ -> error "Bad tracker URL"