1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-11 03:26:14 +03:00

13 lines
197 B
Go
Raw Normal View History

// +build !linux
package dokodemo
import (
"fmt"
"net"
)
func FakeUDP(addr *net.UDPAddr, mark int) (net.PacketConn, error) {
return nil, &net.OpError{Op: "fake", Err: fmt.Errorf("!linux")}
}