blob: f3d7b0561daf4e5d8237879089c837ac8a652d81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
// Package linuxfw returns the kind of firewall being used by the kernel.
package linuxfw
import "errors"
// ErrUnsupported is the error returned from all functions on non-Linux
// platforms.
var ErrUnsupported = errors.New("unsupported")
|