diff options
| -rw-r--r-- | bencode.erl | 9 | ||||
| -rw-r--r-- | tests.erl | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/bencode.erl b/bencode.erl index a04c3a8..2dd4a13 100644 --- a/bencode.erl +++ b/bencode.erl @@ -1,3 +1,12 @@ +%% +%% Basic Bencode (Bittorrent) encoder. The details of the encoding +%% are available here: http://bittorrent.org/protocol.html +%% Technically this probably isn't fully compliant as it's not UTF8, +%% but probably won't matter in simple cases. +%% +%% Author: Steve Smith <tarka@internode.on.net> +%% License: LGPL 2.1 +%% -module(bencode). @@ -1,3 +1,9 @@ +%% +%% Basic Eunit-based test suite for bencode.erl +%% +%% Author: Steve Smith <tarka@internode.on.net> +%% License: LGPL 2.1 +%% -module(tests). |
