k3s/pkg/agent/loadbalancer/utility_windows.go
Brad Davidson c8447dca56 Bump golang to 1.18.1
Also update all use of 'go get' => 'go install', update CI tooling for
1.18 compatibility, and gofmt everything so lint passes.

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2022-05-11 14:39:07 -07:00

11 lines
162 B
Go

//go:build windows
// +build windows
package loadbalancer
import "syscall"
func reusePort(network, address string, conn syscall.RawConn) error {
return nil
}