diff options
Diffstat (limited to 'wgengine/router/router_openbsd.go')
| -rw-r--r-- | wgengine/router/router_openbsd.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wgengine/router/router_openbsd.go b/wgengine/router/router_openbsd.go index 6fdd47ac9..0a840591c 100644 --- a/wgengine/router/router_openbsd.go +++ b/wgengine/router/router_openbsd.go @@ -236,6 +236,11 @@ func (r *openbsdRouter) UpdateMagicsockPort(_ uint16, _ string) error { return nil } +// SetDebugLoggingEnabled implements the Router interface. +func (r *openbsdRouter) SetDebugLoggingEnabled(_ bool) { + // TODO(andrew-d): implement; see https://github.com/tailscale/tailscale/issues/13887 +} + func (r *openbsdRouter) Close() error { cleanUp(r.logf, r.tunname) return nil |
