summaryrefslogtreecommitdiff
path: root/src/Network
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2017-09-15 03:33:47 -0400
committerjoe <joe@jerkface.net>2017-09-15 03:33:47 -0400
commit2fb1f3507075c4cce4f33096ce0080bb14fd2704 (patch)
treeffab01fd99712836392320638f6ed7d981e0d248 /src/Network
parent16631d46cd6c64c81cbc7dd3fa33afdeb6ea2366 (diff)
Moved Tasks to hierarchical location.
Diffstat (limited to 'src/Network')
-rw-r--r--src/Network/BitTorrent/DHT/Search.hs2
-rw-r--r--src/Network/Kademlia.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Network/BitTorrent/DHT/Search.hs b/src/Network/BitTorrent/DHT/Search.hs
index 16a20620..29e91633 100644
--- a/src/Network/BitTorrent/DHT/Search.hs
+++ b/src/Network/BitTorrent/DHT/Search.hs
@@ -6,7 +6,7 @@
6{-# LANGUAGE LambdaCase #-} 6{-# LANGUAGE LambdaCase #-}
7module Network.BitTorrent.DHT.Search where 7module Network.BitTorrent.DHT.Search where
8 8
9import Tasks 9import Control.Concurrent.Tasks
10import Control.Concurrent.STM 10import Control.Concurrent.STM
11import Control.Exception 11import Control.Exception
12import Control.Monad 12import Control.Monad
diff --git a/src/Network/Kademlia.hs b/src/Network/Kademlia.hs
index c6c59ae6..53c37175 100644
--- a/src/Network/Kademlia.hs
+++ b/src/Network/Kademlia.hs
@@ -35,7 +35,7 @@ import System.Timeout
35import Text.PrettyPrint as PP hiding (($$), (<>)) 35import Text.PrettyPrint as PP hiding (($$), (<>))
36import Text.PrettyPrint.HughesPJClass hiding (($$), (<>)) 36import Text.PrettyPrint.HughesPJClass hiding (($$), (<>))
37import System.IO 37import System.IO
38import Tasks 38import Control.Concurrent.Tasks
39 39
40-- | The status of a given node with respect to a given routint table. 40-- | The status of a given node with respect to a given routint table.
41data RoutingStatus 41data RoutingStatus