mirror of https://github.com/k3s-io/k3s
12 lines
231 B
Go
12 lines
231 B
Go
|
//go:build windows
|
||
|
// +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
|
||
|
}
|