mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 10:20:44 -05:00
12 lines
220 B
Go
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()
|
|
}
|