mirror of
https://github.com/tailscale/tailscale.git
synced 2026-05-14 00:36:13 +02:00
Change-Id: I8185f5bdfe080e33910a8224de66c97f10e2ed40 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
13 lines
298 B
Go
13 lines
298 B
Go
//go:build ts_omit_netstack
|
|
|
|
package main
|
|
|
|
import (
|
|
"tailscale.com/tsd"
|
|
"tailscale.com/types/logger"
|
|
)
|
|
|
|
func newNetstack(logf logger.Logf, sys *tsd.System, onlyNetstack, handleSubnetsInNetstack bool) (start func(localBackend any) error, err error) {
|
|
return func(any) error { return nil }, nil
|
|
}
|