]> Sergey Matveev's repositories - vors.git/blob - cmd/server/stats.go
Noising
[vors.git] / cmd / server / stats.go
1 package main
2
3 import "time"
4
5 type Stats struct {
6         pktsRx  int64
7         pktsTx  int64
8         bytesRx uint64
9         bytesTx uint64
10         last    time.Time
11         alive   chan struct{}
12 }