2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-10-15 17:57:10 +01:00
|
|
|
|
|
|
|
//go:build !linux
|
|
|
|
|
|
|
|
package derp
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
2024-05-14 17:28:01 +01:00
|
|
|
func (c *sclient) startStatsLoop(ctx context.Context) {
|
|
|
|
// Nothing to do
|
|
|
|
return
|
2022-10-15 17:57:10 +01:00
|
|
|
}
|