mirror of
https://github.com/tailscale/tailscale.git
synced 2025-07-10 23:58:44 +00:00
13 lines
307 B
Go
13 lines
307 B
Go
![]() |
// Copyright (c) Tailscale Inc & AUTHORS
|
||
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
//go:build plan9
|
||
|
|
||
|
package magicsock
|
||
|
|
||
|
// maybeRebindOnError performs a rebind and restun if the error is defined and
|
||
|
// any conditionals are met.
|
||
|
func (c *Conn) maybeRebindOnError(os string, err error) bool {
|
||
|
return false
|
||
|
}
|