blob: bc3fbb8bafc4a2f77c90040cf55836837df62ab7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
module Main (main) where
import Control.Monad
import Network.BitTorrent
import Network.BitTorrent.Extension
import System.Environment
import Control.Monad.Trans
main :: IO ()
main = do
[path] <- getArgs
torrent <- fromFile path
print (contentLayout "./" (tInfo torrent))
client <- newClient 100 [ExtDHT]
swarm <- newLeecher client torrent
storage <- swarm `bindTo` "/tmp/"
ppStorage storage >>= print
discover swarm $ do
liftIO $ print "connected to peer"
forever $ do
liftIO (getCurrentProgress client >>= print)
exchange storage
liftIO $ print "disconnected"
|