1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-02-23 17:20:43 +00:00

14 lines
215 B
Go
Raw Normal View History

2021-09-20 21:00:55 +08:00
//go:build !linux
// +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")}
}