summaryrefslogtreecommitdiff
path: root/src/Network/BitTorrent/DHT
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2014-02-19 23:32:18 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2014-02-19 23:32:18 +0400
commit67f96198ee63bb2faf08d0c6f6c89f11dc595f4a (patch)
treea05bf14ef65c7e043b49ad06d7c1be015d5daf4f /src/Network/BitTorrent/DHT
parente8d8650941642ac1619e66dfb605d6a81973c332 (diff)
Add module header to DHT session module
Diffstat (limited to 'src/Network/BitTorrent/DHT')
-rw-r--r--src/Network/BitTorrent/DHT/Session.hs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Network/BitTorrent/DHT/Session.hs b/src/Network/BitTorrent/DHT/Session.hs
index a452b764..69970918 100644
--- a/src/Network/BitTorrent/DHT/Session.hs
+++ b/src/Network/BitTorrent/DHT/Session.hs
@@ -1,10 +1,15 @@
1-- | 1-- |
2-- Copyright : (c) Sam Truzjan 2013 2-- Copyright : (c) Sam Truzjan 2013-2014
3-- License : BSD3 3-- License : BSD3
4-- Maintainer : pxqr.sta@gmail.com 4-- Maintainer : pxqr.sta@gmail.com
5-- Stability : experimental 5-- Stability : experimental
6-- Portability : portable 6-- Portability : portable
7-- 7--
8-- This module defines internal state of a node instance. You can
9-- have multiple nodes per application but usually you don't have
10-- to. Normally, you don't need to import this module, use
11-- "Network.BitTorrent.DHT" instead.
12--
8{-# LANGUAGE RecordWildCards #-} 13{-# LANGUAGE RecordWildCards #-}
9{-# LANGUAGE FlexibleContexts #-} 14{-# LANGUAGE FlexibleContexts #-}
10{-# LANGUAGE FlexibleInstances #-} 15{-# LANGUAGE FlexibleInstances #-}