summaryrefslogtreecommitdiff
path: root/examples/Main.hs
blob: 8d976aed8f41dcc3b6528f6689924b79a2d560d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module Main (main) where

import Control.Monad
import Network.BitTorrent
import System.Environment
import Control.Monad.Trans


main :: IO ()
main = do
  [path]  <- getArgs
  torrent <- fromFile path

  print (contentLayout "./" (tInfo torrent))

  client  <- newClient 100 []
  swarm   <- newLeecher  client torrent

  storage <- swarm `bindTo`  "/tmp/"

  ppStorage storage >>= print

  discover swarm $ do
    liftIO $ print "connected to peer"
    forever $ exchange storage
    liftIO $ print "disconnect to peer"