aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-07-06 03:33:17 +0200
committerDimitri Sokolyuk <demon@dim13.org>2016-07-06 03:33:17 +0200
commit3e493ee0ddb045133607a6461f6397f8909e83a5 (patch)
tree39fca06593dbbfa6f6513d391d0b2643f14e8db2
parent58e0d344dcb2e462cab0547d0f8a8c6e430a28fe (diff)
Add comment on MD5
-rw-r--r--meta/torrent.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/torrent.go b/meta/torrent.go
index b40936d..03c8693 100644
--- a/meta/torrent.go
+++ b/meta/torrent.go
@@ -15,7 +15,7 @@ var ErrNotImplemented = errors.New("not implemented")
type File struct {
Length int `bencode:"length"`
- MD5Sum []byte `bencode:"md5sum,optional"`
+ MD5Sum []byte `bencode:"md5sum,optional"` // never seen in wildlife
Path []string `bencode:"path"`
}
@@ -26,7 +26,7 @@ func (f File) Name() string {
type Info struct {
Files []File `bencode:"files"`
Length int `bencode:"length"`
- MD5Sum []byte `bencode:"md5sum,optional"`
+ MD5Sum []byte `bencode:"md5sum,optional"` // never seen in wildlife
Name string `bencode:"name"`
PieceLength int `bencode:"piece length"`
Pieces []byte `bencode:"pieces"`