aboutsummaryrefslogtreecommitdiff
path: root/cmd/mybittorrent/file.go
blob: 498ea3f8929ffac936c94549d50e623bbd06c680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

type Meta struct {
	Announce string   `bencode:"announce"`
	Info     FileInfo `bencode:"info"`
}

type FileInfo struct {
	Length      int    `bencode:"length"`
	Name        string `bencode:"name"`
	PieceLength int    `bencode:"piece length"`
	Pieces      string `bencode:"pieces"`
}