linuxfw.go 324 B

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