Xray-core/proxy/dokodemo/fakeudp_other.go

14 lines
215 B
Go
Raw Permalink Normal View History

2021-09-20 13:00:55 +00: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")}
}