mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
7f5e3febe5
And make the monitor package portable with no-op implementations on unsupported operating systems. Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
37 lines
956 B
Go
37 lines
956 B
Go
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package wgengine
|
|
|
|
import (
|
|
"github.com/tailscale/wireguard-go/device"
|
|
"github.com/tailscale/wireguard-go/tun"
|
|
"tailscale.com/types/logger"
|
|
)
|
|
|
|
// NewFakeRouter returns a new fake Router implementation whose
|
|
// implementation does nothing and always returns nil errors.
|
|
func NewFakeRouter(logf logger.Logf, _ *device.Device, _ tun.Device) (Router, error) {
|
|
return fakeRouter{logf: logf}, nil
|
|
}
|
|
|
|
type fakeRouter struct {
|
|
logf logger.Logf
|
|
}
|
|
|
|
func (r fakeRouter) Up() error {
|
|
r.logf("Warning: fakeRouter.Up: not implemented.\n")
|
|
return nil
|
|
}
|
|
|
|
func (r fakeRouter) SetRoutes(rs RouteSettings) error {
|
|
r.logf("Warning: fakeRouter.SetRoutes: not implemented.\n")
|
|
return nil
|
|
}
|
|
|
|
func (r fakeRouter) Close() error {
|
|
r.logf("Warning: fakeRouter.Close: not implemented.\n")
|
|
return nil
|
|
}
|