mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-22 05:06:07 +03:00
Temporarily turn off sockopt for UDP on windows
This commit is contained in:
parent
a15334b395
commit
bf02392969
@ -2,6 +2,7 @@ package internet
|
||||
|
||||
import (
|
||||
"context"
|
||||
"runtime"
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
@ -66,7 +67,7 @@ func (d *DefaultSystemDialer) Dial(ctx context.Context, src net.Address, dest ne
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if sockopt != nil || len(d.controllers) > 0 {
|
||||
if runtime.GOOS != "windows" && (sockopt != nil || len(d.controllers) > 0) {
|
||||
file, err := packetConn.(*net.UDPConn).File()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
Loading…
Reference in New Issue
Block a user