summaryrefslogtreecommitdiff
path: root/src/Network/BitTorrent/Exchange
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2017-06-09 01:16:27 -0400
committerjoe <joe@jerkface.net>2017-06-09 01:16:27 -0400
commit73d3900b2fd124b48e01e222a50740cd5c30c95f (patch)
treef160d2417d73a5eca02727e6fcd41e3bb06b1c07 /src/Network/BitTorrent/Exchange
parent13b2eb08cb4651a913849d96f516ed97bad53003 (diff)
Rename Network.BitTorrent.Address -> Network.Address
Diffstat (limited to 'src/Network/BitTorrent/Exchange')
-rw-r--r--src/Network/BitTorrent/Exchange/Connection.hs2
-rw-r--r--src/Network/BitTorrent/Exchange/Download.hs2
-rw-r--r--src/Network/BitTorrent/Exchange/Manager.hs2
-rw-r--r--src/Network/BitTorrent/Exchange/Message.hs2
-rw-r--r--src/Network/BitTorrent/Exchange/Session.hs2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/Network/BitTorrent/Exchange/Connection.hs b/src/Network/BitTorrent/Exchange/Connection.hs
index d65d322e..6804d0a2 100644
--- a/src/Network/BitTorrent/Exchange/Connection.hs
+++ b/src/Network/BitTorrent/Exchange/Connection.hs
@@ -137,7 +137,7 @@ import System.Log.FastLogger (ToLogStr(..))
137import System.Timeout 137import System.Timeout
138 138
139import Data.Torrent 139import Data.Torrent
140import Network.BitTorrent.Address 140import Network.Address
141import Network.BitTorrent.Exchange.Bitfield as BF 141import Network.BitTorrent.Exchange.Bitfield as BF
142import Network.BitTorrent.Exchange.Message as Msg 142import Network.BitTorrent.Exchange.Message as Msg
143 143
diff --git a/src/Network/BitTorrent/Exchange/Download.hs b/src/Network/BitTorrent/Exchange/Download.hs
index aa754407..981db2fb 100644
--- a/src/Network/BitTorrent/Exchange/Download.hs
+++ b/src/Network/BitTorrent/Exchange/Download.hs
@@ -43,7 +43,7 @@ import Data.Map as M
43import Data.Tuple 43import Data.Tuple
44 44
45import Data.Torrent as Torrent 45import Data.Torrent as Torrent
46import Network.BitTorrent.Address 46import Network.Address
47import Network.BitTorrent.Exchange.Bitfield as BF 47import Network.BitTorrent.Exchange.Bitfield as BF
48import Network.BitTorrent.Exchange.Block as Block 48import Network.BitTorrent.Exchange.Block as Block
49import Network.BitTorrent.Exchange.Message as Msg 49import Network.BitTorrent.Exchange.Message as Msg
diff --git a/src/Network/BitTorrent/Exchange/Manager.hs b/src/Network/BitTorrent/Exchange/Manager.hs
index 54727805..30a6a607 100644
--- a/src/Network/BitTorrent/Exchange/Manager.hs
+++ b/src/Network/BitTorrent/Exchange/Manager.hs
@@ -13,7 +13,7 @@ import Data.Default
13import Network.Socket 13import Network.Socket
14 14
15import Data.Torrent 15import Data.Torrent
16import Network.BitTorrent.Address 16import Network.Address
17import Network.BitTorrent.Exchange.Connection hiding (Options) 17import Network.BitTorrent.Exchange.Connection hiding (Options)
18import Network.BitTorrent.Exchange.Session 18import Network.BitTorrent.Exchange.Session
19 19
diff --git a/src/Network/BitTorrent/Exchange/Message.hs b/src/Network/BitTorrent/Exchange/Message.hs
index 74232b47..2c6770f7 100644
--- a/src/Network/BitTorrent/Exchange/Message.hs
+++ b/src/Network/BitTorrent/Exchange/Message.hs
@@ -119,7 +119,7 @@ import Text.PrettyPrint.HughesPJClass hiding ((<>),($$))
119 119
120import Data.Torrent hiding (Piece (..)) 120import Data.Torrent hiding (Piece (..))
121import qualified Data.Torrent as P (Piece (..)) 121import qualified Data.Torrent as P (Piece (..))
122import Network.BitTorrent.Address 122import Network.Address
123import Network.BitTorrent.Exchange.Bitfield 123import Network.BitTorrent.Exchange.Bitfield
124import Network.BitTorrent.Exchange.Block 124import Network.BitTorrent.Exchange.Block
125 125
diff --git a/src/Network/BitTorrent/Exchange/Session.hs b/src/Network/BitTorrent/Exchange/Session.hs
index 00886ccf..38a3c3a6 100644
--- a/src/Network/BitTorrent/Exchange/Session.hs
+++ b/src/Network/BitTorrent/Exchange/Session.hs
@@ -52,7 +52,7 @@ import System.Log.FastLogger (LogStr, ToLogStr (..))
52import Data.BEncode as BE 52import Data.BEncode as BE
53import Data.Torrent as Torrent 53import Data.Torrent as Torrent
54import Network.BitTorrent.Internal.Types 54import Network.BitTorrent.Internal.Types
55import Network.BitTorrent.Address 55import Network.Address
56import Network.BitTorrent.Exchange.Bitfield as BF 56import Network.BitTorrent.Exchange.Bitfield as BF
57import Network.BitTorrent.Exchange.Block as Block 57import Network.BitTorrent.Exchange.Block as Block
58import Network.BitTorrent.Exchange.Connection 58import Network.BitTorrent.Exchange.Connection