mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-09-22 09:06:53 +00:00
https://github.com/XTLS/Xray-core/pull/6546#issuecomment-5100711574
21 lines
412 B
Go
21 lines
412 B
Go
//go:build js || netbsd || solaris
|
|
// +build js netbsd solaris
|
|
|
|
package internet
|
|
|
|
func applyOutboundSocketOptions(network string, address string, fd uintptr, config *SocketConfig) error {
|
|
return nil
|
|
}
|
|
|
|
func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig) error {
|
|
return nil
|
|
}
|
|
|
|
func setReuseAddr(fd uintptr) error {
|
|
return nil
|
|
}
|
|
|
|
func setReusePort(fd uintptr) error {
|
|
return nil
|
|
}
|