Documentation ¶
Overview ¶
Package speedtest contains both server and client code for running speedtests between tailscale nodes.
Index ¶
Constants ¶
View Source
const ( MinDuration = 5 * time.Second // minimum duration for a test DefaultDuration = MinDuration // default duration for a test MaxDuration = 30 * time.Second // maximum duration for a test DefaultPort = 20333 )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Result ¶
type Result struct { Bytes int // number of bytes sent/received during the interval IntervalStart time.Time // start of the interval IntervalEnd time.Time // end of the interval Total bool // if true, this result struct represents the entire test, rather than a segment of the test }
This represents the Result of a speedtest within a specific interval
func RunClient ¶
RunClient dials the given address and starts a speedtest. It returns any errors that come up in the tests. If there are no errors in the test, it returns a slice of results.
func (Result) MBitsPerSecond ¶
Click to show internal directories.
Click to hide internal directories.