f8e9a759d3
Non-Linux build targets get the current default of 0. This will allow platform specific fingerprinting for network capabilities.
9 lines
155 B
Go
9 lines
155 B
Go
// +build !linux
|
|
|
|
package fingerprint
|
|
|
|
// linkSpeed returns the default link speed
|
|
func (f *NetworkFingerprint) linkSpeed(device string) int {
|
|
return 0
|
|
}
|