2020-02-05 22:16:58 +00:00
|
|
|
// 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.
|
|
|
|
|
2020-04-30 21:20:09 +01:00
|
|
|
package router
|
2020-02-05 22:16:58 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/tailscale/wireguard-go/device"
|
|
|
|
"github.com/tailscale/wireguard-go/tun"
|
2020-02-15 03:23:16 +00:00
|
|
|
"tailscale.com/types/logger"
|
2020-02-05 22:16:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type darwinRouter struct {
|
2020-05-31 07:36:57 +01:00
|
|
|
logf logger.Logf
|
2020-02-05 22:16:58 +00:00
|
|
|
tunname string
|
|
|
|
}
|
|
|
|
|
2020-02-17 17:00:38 +00:00
|
|
|
func newUserspaceRouter(logf logger.Logf, _ *device.Device, tundev tun.Device) (Router, error) {
|
2020-02-14 23:03:25 +00:00
|
|
|
tunname, err := tundev.Name()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
2020-05-31 07:36:57 +01:00
|
|
|
return &darwinRouter{
|
|
|
|
logf: logf,
|
|
|
|
tunname: tunname,
|
|
|
|
}, nil
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *darwinRouter) Up() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-12 08:08:52 +01:00
|
|
|
func (r *darwinRouter) Set(cfg *Config) error {
|
|
|
|
if SetRoutesFunc == nil {
|
|
|
|
return nil
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
2020-05-12 08:08:52 +01:00
|
|
|
if cfg == nil {
|
|
|
|
cfg = &shutdownConfig
|
|
|
|
}
|
|
|
|
return SetRoutesFunc(cfg)
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
|
|
|
|
2020-02-13 00:16:05 +00:00
|
|
|
func (r *darwinRouter) Close() error {
|
|
|
|
return nil
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|