summaryrefslogtreecommitdiff
path: root/src/Network/Torrent/PeerWire.hs
diff options
context:
space:
mode:
authorSam T <sta.cs.vsu@gmail.com>2013-04-07 21:48:28 +0400
committerSam T <sta.cs.vsu@gmail.com>2013-04-07 21:48:28 +0400
commit4296031c4c1b004ec2271c0028ab603c3f6c4e8a (patch)
treeae7bd740d7caf5b1b5558fe79d6c2d93a4a239c2 /src/Network/Torrent/PeerWire.hs
parent8853d0fa11db7ef39e2a6b4b8132ebe844a52c19 (diff)
move handshake to PeerWire
Diffstat (limited to 'src/Network/Torrent/PeerWire.hs')
-rw-r--r--src/Network/Torrent/PeerWire.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Network/Torrent/PeerWire.hs b/src/Network/Torrent/PeerWire.hs
index b1fae9f2..27ecda79 100644
--- a/src/Network/Torrent/PeerWire.hs
+++ b/src/Network/Torrent/PeerWire.hs
@@ -1,8 +1,11 @@
1{-# LANGUAGE DoAndIfThenElse #-} 1{-# LANGUAGE DoAndIfThenElse #-}
2module Network.Torrent.PeerWire 2module Network.Torrent.PeerWire
3 ( Message(..), Block(..), BlockIx(..), 3 ( module Network.Torrent.PeerWire.Handshake
4 , Message(..), Block(..), BlockIx(..),
4 ) where 5 ) where
5 6
7import Network.Torrent.PeerWire.Handshake
8
6import Control.Applicative 9import Control.Applicative
7import Data.ByteString (ByteString) 10import Data.ByteString (ByteString)
8import qualified Data.ByteString as B 11import qualified Data.ByteString as B