diff options
-rw-r--r-- | bittorrent.cabal | 2 | ||||
-rw-r--r-- | examples/Main.hs | 23 | ||||
-rw-r--r-- | examples/Main.lhs | 23 |
3 files changed, 24 insertions, 24 deletions
diff --git a/bittorrent.cabal b/bittorrent.cabal index 72673b35..8b1f967c 100644 --- a/bittorrent.cabal +++ b/bittorrent.cabal | |||
@@ -176,7 +176,7 @@ benchmark benchmarks | |||
176 | 176 | ||
177 | 177 | ||
178 | executable example | 178 | executable example |
179 | main-is: Main.lhs | 179 | main-is: Main.hs |
180 | hs-source-dirs: examples | 180 | hs-source-dirs: examples |
181 | build-depends: base == 4.* | 181 | build-depends: base == 4.* |
182 | , bittorrent | 182 | , bittorrent |
diff --git a/examples/Main.hs b/examples/Main.hs new file mode 100644 index 00000000..bc3fbb8b --- /dev/null +++ b/examples/Main.hs | |||
@@ -0,0 +1,23 @@ | |||
1 | module Main (main) where | ||
2 | |||
3 | import Control.Monad | ||
4 | import Network.BitTorrent | ||
5 | import Network.BitTorrent.Extension | ||
6 | import System.Environment | ||
7 | import Control.Monad.Trans | ||
8 | |||
9 | main :: IO () | ||
10 | main = do | ||
11 | [path] <- getArgs | ||
12 | torrent <- fromFile path | ||
13 | print (contentLayout "./" (tInfo torrent)) | ||
14 | client <- newClient 100 [ExtDHT] | ||
15 | swarm <- newLeecher client torrent | ||
16 | storage <- swarm `bindTo` "/tmp/" | ||
17 | ppStorage storage >>= print | ||
18 | discover swarm $ do | ||
19 | liftIO $ print "connected to peer" | ||
20 | forever $ do | ||
21 | liftIO (getCurrentProgress client >>= print) | ||
22 | exchange storage | ||
23 | liftIO $ print "disconnected" | ||
diff --git a/examples/Main.lhs b/examples/Main.lhs deleted file mode 100644 index 4d1c4eef..00000000 --- a/examples/Main.lhs +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | > module Main (main) where | ||
2 | > | ||
3 | > import Control.Monad | ||
4 | > import Network.BitTorrent | ||
5 | > import System.Environment | ||
6 | > import Control.Monad.Trans | ||
7 | > | ||
8 | > | ||
9 | > main :: IO () | ||
10 | > main = do | ||
11 | > [path] <- getArgs | ||
12 | > torrent <- fromFile path | ||
13 | > print (contentLayout "./" (tInfo torrent)) | ||
14 | > client <- newClient 2 [] | ||
15 | > swarm <- newLeecher client torrent | ||
16 | > storage <- swarm `bindTo` "/tmp/" | ||
17 | > ppStorage storage >>= print | ||
18 | > discover swarm $ do | ||
19 | > liftIO $ print "connected to peer" | ||
20 | > forever $ do | ||
21 | > liftIO (getCurrentProgress client >>= print) | ||
22 | > exchange storage | ||
23 | > liftIO $ print "disconnected" | ||