summaryrefslogtreecommitdiff
path: root/src/Network/BitTorrent.hs
diff options
context:
space:
mode:
authorSam T <sta.cs.vsu@gmail.com>2013-04-24 23:52:42 +0400
committerSam T <sta.cs.vsu@gmail.com>2013-04-24 23:52:42 +0400
commit82bea85b66304a550df074e700078c0c0c5d602a (patch)
treedff862bd03f730285c81b1cabbc6e4f647112b78 /src/Network/BitTorrent.hs
parenta3b7d8442feaec251c38609712d24aea208becbb (diff)
+ Add handshake pprint.
Move Peer to separated module since otherwise we have recursive module dependencies.
Diffstat (limited to 'src/Network/BitTorrent.hs')
-rw-r--r--src/Network/BitTorrent.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Network/BitTorrent.hs b/src/Network/BitTorrent.hs
index 9c1977d4..97efbbda 100644
--- a/src/Network/BitTorrent.hs
+++ b/src/Network/BitTorrent.hs
@@ -1,9 +1,11 @@
1module Network.BitTorrent 1module Network.BitTorrent
2 ( module Network.BitTorrent.PeerID 2 ( module Network.BitTorrent.Peer
3 , module Network.BitTorrent.PeerID
3 , module Network.BitTorrent.Tracker 4 , module Network.BitTorrent.Tracker
4 , module Network.BitTorrent.PeerWire 5 , module Network.BitTorrent.PeerWire
5 ) where 6 ) where
6 7
8import Network.BitTorrent.Peer
7import Network.BitTorrent.PeerID 9import Network.BitTorrent.PeerID
8import Network.BitTorrent.Tracker 10import Network.BitTorrent.Tracker
9import Network.BitTorrent.PeerWire 11import Network.BitTorrent.PeerWire