]>
Commit | Line | Data |
---|---|---|
6988a057 JH |
1 | package hotline |
2 | ||
3 | import ( | |
6988a057 JH |
4 | "time" |
5 | ) | |
6 | ||
7 | type Stats struct { | |
7cd900d6 JH |
8 | CurrentlyConnected int |
9 | DownloadsInProgress int | |
10 | UploadsInProgress int | |
00913df3 | 11 | WaitingDownloads int |
7cd900d6 | 12 | ConnectionPeak int |
00913df3 | 13 | ConnectionCounter int |
7cd900d6 JH |
14 | DownloadCounter int |
15 | UploadCounter int | |
00913df3 | 16 | Since time.Time |
6988a057 | 17 | } |