mirror of
https://github.com/tailscale/tailscale.git
synced 2025-05-21 17:58:33 +00:00

Updates #12614 Change-Id: I0e2a18eca3515d3d6206c059110556d2bbbb0c5c Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
19 lines
550 B
Go
19 lines
550 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !linux || android
|
|
|
|
package netkernelconf
|
|
|
|
// CheckUDPGROForwarding is unimplemented for non-Linux platforms. Refer to the
|
|
// docstring in _linux.go.
|
|
func CheckUDPGROForwarding(tunInterface, defaultRouteInterface string) (warn, err error) {
|
|
return nil, nil
|
|
}
|
|
|
|
// SetUDPGROForwarding is unimplemented for non-Linux platforms. Refer to the
|
|
// docstring in _linux.go.
|
|
func SetUDPGROForwarding(tunInterface, defaultRouteInterface string) error {
|
|
return nil
|
|
}
|