derpserver_default.go 235 B

12345678910111213
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. //go:build !linux || android
  4. package derpserver
  5. import "context"
  6. func (c *sclient) startStatsLoop(ctx context.Context) {
  7. // Nothing to do
  8. return
  9. }