mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 16:24:03 +03:00
FILE / ScuroNeko/mtg
network/v2/sockopts_reuseaddr_stub.go
Исходный файл и его история в репозитории.
10 lines
127 B
Go
10 lines
127 B
Go
//go:build windows
|
|
|
|
package network
|
|
|
|
import "syscall"
|
|
|
|
func setSocketReuseAddrPort(conn syscall.RawConn) error {
|
|
return nil
|
|
}
|