mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-30 19:19:38 +00:00
10 lines
143 B
Go
10 lines
143 B
Go
// +build windows
|
|
|
|
package loadbalancer
|
|
|
|
import "syscall"
|
|
|
|
func reusePort(network, address string, conn syscall.RawConn) error {
|
|
return nil
|
|
}
|