1
0
Fork 0
mirror of https://github.com/Luzifer/continuous-spark.git synced 2024-12-20 17:51:22 +00:00

Fix linter warnings

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2017-07-28 07:29:16 +02:00
parent 164e4b60f5
commit 54a704f19d
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -14,11 +14,10 @@ const (
protocolVersion uint16 = 0x00 // Protocol Version protocolVersion uint16 = 0x00 // Protocol Version
blockSize int64 = 200 // size (KB) of each block of data copied to/from remote blockSize int64 = 200 // size (KB) of each block of data copied to/from remote
throughputTestLength uint = 10 // length of time to conduct each throughput test throughputTestLength uint = 10 // length of time to conduct each throughput test
maxPingTestLength uint = 10 // maximum time for ping test to complete
numPings int = 30 // number of pings to attempt numPings int = 30 // number of pings to attempt
KBPS = 1024.0 kbps = 1024.0
MBPS = 1024.0 * KBPS mbps = 1024.0 * kbps
) )
type testResult struct { type testResult struct {
@ -51,12 +50,12 @@ func (t testResult) String() string {
t.Ping.Max, t.Ping.Max,
t.Ping.Avg, t.Ping.Avg,
t.Ping.Dev, t.Ping.Dev,
t.Receive.Min/MBPS, t.Receive.Min/mbps,
t.Receive.Max/MBPS, t.Receive.Max/mbps,
t.Receive.Avg/MBPS, t.Receive.Avg/mbps,
t.Send.Min/MBPS, t.Send.Min/mbps,
t.Send.Max/MBPS, t.Send.Max/mbps,
t.Send.Avg/MBPS, t.Send.Avg/mbps,
) )
} }