mirror of
https://github.com/k3s-io/k3s.git
synced 2026-04-06 18:05:05 -04:00
10 lines
213 B
Go
10 lines
213 B
Go
//go:build windows
|
|
|
|
package util
|
|
|
|
import "syscall"
|
|
|
|
// permitReuse is a no-op; port and address reuse is not supported on Windows
|
|
func permitReuse(network, addr string, conn syscall.RawConn) error {
|
|
return nil
|
|
}
|