1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-15 00:18:16 -04:00
v2fly/transport/internet/udp/source_forging.go
Darien Raymond 12a0d6e0b9 cleanup
2017-10-26 21:07:33 +02:00

12 lines
220 B
Go

// +build !linux
package udp
import (
"net"
)
func TransmitSocket(src net.Addr, dst net.Addr) (net.Conn, error) {
return nil, newError("forging source address is not supported on non-Linux platform.").AtWarning()
}