]> Sergey Matveev's repositories - vors.git/blob - cmd/server/stats.go
b4c324ba158fb1ac838174d87a1e3f0d7deb1bb3e89a4e4c8aac87bf362f93a1
[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         dead    chan struct{}
12 }