summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bittorrent.cabal2
-rw-r--r--src/Network/BitTorrent/Exchange/Session.hs2
-rw-r--r--src/Network/BitTorrent/Exchange/Wire.hs2
-rw-r--r--src/Network/BitTorrent/Exchange/Wire/Status.hs (renamed from src/Network/BitTorrent/Exchange/Status.hs)2
4 files changed, 4 insertions, 4 deletions
diff --git a/bittorrent.cabal b/bittorrent.cabal
index 2db94105..c6797164 100644
--- a/bittorrent.cabal
+++ b/bittorrent.cabal
@@ -77,8 +77,8 @@ library
77 Network.BitTorrent.Exchange.Session 77 Network.BitTorrent.Exchange.Session
78 Network.BitTorrent.Exchange.Session.Metadata 78 Network.BitTorrent.Exchange.Session.Metadata
79 Network.BitTorrent.Exchange.Session.Status 79 Network.BitTorrent.Exchange.Session.Status
80 Network.BitTorrent.Exchange.Status
81 Network.BitTorrent.Exchange.Wire 80 Network.BitTorrent.Exchange.Wire
81 Network.BitTorrent.Exchange.Wire.Status
82 Network.BitTorrent.Tracker 82 Network.BitTorrent.Tracker
83 Network.BitTorrent.Tracker.Cache 83 Network.BitTorrent.Tracker.Cache
84 Network.BitTorrent.Tracker.List 84 Network.BitTorrent.Tracker.List
diff --git a/src/Network/BitTorrent/Exchange/Session.hs b/src/Network/BitTorrent/Exchange/Session.hs
index f10f601e..b6ee800a 100644
--- a/src/Network/BitTorrent/Exchange/Session.hs
+++ b/src/Network/BitTorrent/Exchange/Session.hs
@@ -47,8 +47,8 @@ import Network.BitTorrent.Exchange.Block as Block
47import Network.BitTorrent.Exchange.Message as Message 47import Network.BitTorrent.Exchange.Message as Message
48import Network.BitTorrent.Exchange.Session.Metadata as Metadata 48import Network.BitTorrent.Exchange.Session.Metadata as Metadata
49import Network.BitTorrent.Exchange.Session.Status as SS 49import Network.BitTorrent.Exchange.Session.Status as SS
50import Network.BitTorrent.Exchange.Status
51import Network.BitTorrent.Exchange.Wire 50import Network.BitTorrent.Exchange.Wire
51import Network.BitTorrent.Exchange.Wire.Status
52import System.Torrent.Storage 52import System.Torrent.Storage
53 53
54{----------------------------------------------------------------------- 54{-----------------------------------------------------------------------
diff --git a/src/Network/BitTorrent/Exchange/Wire.hs b/src/Network/BitTorrent/Exchange/Wire.hs
index 4224a25d..411cd598 100644
--- a/src/Network/BitTorrent/Exchange/Wire.hs
+++ b/src/Network/BitTorrent/Exchange/Wire.hs
@@ -109,7 +109,7 @@ import Data.Torrent.InfoHash
109import Data.Torrent.Piece 109import Data.Torrent.Piece
110import Network.BitTorrent.Core 110import Network.BitTorrent.Core
111import Network.BitTorrent.Exchange.Message as Msg 111import Network.BitTorrent.Exchange.Message as Msg
112import Network.BitTorrent.Exchange.Status 112import Network.BitTorrent.Exchange.Wire.Status
113 113
114-- TODO handle port message? 114-- TODO handle port message?
115-- TODO handle limits? 115-- TODO handle limits?
diff --git a/src/Network/BitTorrent/Exchange/Status.hs b/src/Network/BitTorrent/Exchange/Wire/Status.hs
index bc7840a3..d1b60f11 100644
--- a/src/Network/BitTorrent/Exchange/Status.hs
+++ b/src/Network/BitTorrent/Exchange/Wire/Status.hs
@@ -9,7 +9,7 @@
9-- sides. 9-- sides.
10-- 10--
11{-# LANGUAGE TemplateHaskell #-} 11{-# LANGUAGE TemplateHaskell #-}
12module Network.BitTorrent.Exchange.Status 12module Network.BitTorrent.Exchange.Wire.Status
13 ( -- * Peer status 13 ( -- * Peer status
14 PeerStatus(..) 14 PeerStatus(..)
15 , choking 15 , choking