2023-04-10 15:36:59 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2021-10-01 13:59:55 +00:00
|
|
|
//go:build !linux && !windows
|
2016-07-20 20:13:50 +00:00
|
|
|
// +build !linux,!windows
|
2016-05-09 06:25:01 +00:00
|
|
|
|
|
|
|
package fingerprint
|
|
|
|
|
|
|
|
// linkSpeed returns the default link speed
|
|
|
|
func (f *NetworkFingerprint) linkSpeed(device string) int {
|
|
|
|
return 0
|
|
|
|
}
|