blob: 6af76a16a088627dd0df2cda7246699418242460 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
-- |
-- Copyright : (c) Sam Truzjan 2013
-- License : BSD3
-- Maintainer : pxqr.sta@gmail.com
-- Stability : experimental
-- Portability : non-portable
--
-- This module provides high level API for peer -> tracker
-- communication. Tracker is used to discover other peers in the
-- network using torrent info hash.
--
{-# LANGUAGE TemplateHaskell #-}
module Network.BitTorrent.Tracker
( PeerInfo (..)
-- * RPC Manager
, Options
, Manager
, newManager
, closeManager
, withManager
-- * Multitracker session
, trackerList
, Session
, newSession
, closeSession
-- * Events
, Event (..)
, notify
, askPeers
-- * Query
-- , getSessionState
) where
import Network.BitTorrent.Tracker.List
import Network.BitTorrent.Tracker.RPC
import Network.BitTorrent.Tracker.Session
|