-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmodels.go
More file actions
49 lines (43 loc) · 963 Bytes
/
models.go
File metadata and controls
49 lines (43 loc) · 963 Bytes
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
41
42
43
44
45
46
47
48
49
// Copyright (C) 2019 Vincent Chueng (coolingfall@gmail.com).
package aria2go
// Type definition for download information.
type DownloadInfo struct {
Status int
TotalLength int64
BytesCompleted int64
BytesUpload int64
DownloadSpeed int
UploadSpeed int
NumPieces int
Connections int
BitField string
InfoHash string
MetaInfo MetaInfo
Files []File
}
// Type definition for BitTorrent meta information.
type MetaInfo struct {
Name string
AnnounceList []string
Comment string
CreationUnix int64
Mode string
}
// Type definition for file in torrent.
type File struct {
Index int
Name string
Length int64
CompletedLength int64
Selected bool
}
type Options map[string]string
// Type definition for download event, this will keep the same with aria2.
const (
onStart = iota + 1
onPause
onStop
onComplete
onError
onBTComplete
)