mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 16:35:44 +03:00
13 lines
265 B
Go
13 lines
265 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !linux && !windows
|
|
// +build !linux,!windows
|
|
|
|
package fingerprint
|
|
|
|
// linkSpeed returns the default link speed
|
|
func (f *NetworkFingerprint) linkSpeed(device string) int {
|
|
return 0
|
|
}
|