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