diff options
author | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-14 22:04:03 +0400 |
---|---|---|
committer | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-14 22:04:03 +0400 |
commit | 6bd297aee69a74d19f81f240d170d9bca81c96cf (patch) | |
tree | 15955bbaa7f8fa585e85d3e0dcd606307caf80de /src/Network/BitTorrent/Exchange | |
parent | 9c7227c5c0cac81351684ccfa2f49d6b97bedf03 (diff) |
[Exchange] Move session status to Download module
Diffstat (limited to 'src/Network/BitTorrent/Exchange')
-rw-r--r-- | src/Network/BitTorrent/Exchange/Download.hs (renamed from src/Network/BitTorrent/Exchange/Session/Status.hs) | 2 | ||||
-rw-r--r-- | src/Network/BitTorrent/Exchange/Session.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Network/BitTorrent/Exchange/Session/Status.hs b/src/Network/BitTorrent/Exchange/Download.hs index af3e94f5..fcc94485 100644 --- a/src/Network/BitTorrent/Exchange/Session/Status.hs +++ b/src/Network/BitTorrent/Exchange/Download.hs | |||
@@ -1,4 +1,4 @@ | |||
1 | module Network.BitTorrent.Exchange.Session.Status | 1 | module Network.BitTorrent.Exchange.Download |
2 | ( -- * Environment | 2 | ( -- * Environment |
3 | StatusUpdates | 3 | StatusUpdates |
4 | , runStatusUpdates | 4 | , runStatusUpdates |
diff --git a/src/Network/BitTorrent/Exchange/Session.hs b/src/Network/BitTorrent/Exchange/Session.hs index 4c6811d9..49bff44f 100644 --- a/src/Network/BitTorrent/Exchange/Session.hs +++ b/src/Network/BitTorrent/Exchange/Session.hs | |||
@@ -51,9 +51,9 @@ import Network.BitTorrent.Address | |||
51 | import Network.BitTorrent.Exchange.Bitfield as BF | 51 | import Network.BitTorrent.Exchange.Bitfield as BF |
52 | import Network.BitTorrent.Exchange.Block as Block | 52 | import Network.BitTorrent.Exchange.Block as Block |
53 | import Network.BitTorrent.Exchange.Connection | 53 | import Network.BitTorrent.Exchange.Connection |
54 | import Network.BitTorrent.Exchange.Download as SS | ||
54 | import Network.BitTorrent.Exchange.Message as Message | 55 | import Network.BitTorrent.Exchange.Message as Message |
55 | import Network.BitTorrent.Exchange.Session.Metadata as Metadata | 56 | import Network.BitTorrent.Exchange.Session.Metadata as Metadata |
56 | import Network.BitTorrent.Exchange.Session.Status as SS | ||
57 | import System.Torrent.Storage | 57 | import System.Torrent.Storage |
58 | 58 | ||
59 | {----------------------------------------------------------------------- | 59 | {----------------------------------------------------------------------- |