mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
13 lines
228 B
Go
13 lines
228 B
Go
|
// +build !linux
|
||
|
|
||
|
package redir
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
func dialUDP(network string, lAddr *net.UDPAddr, rAddr *net.UDPAddr) (*net.UDPConn, error) {
|
||
|
return nil, errors.New("UDP redir not supported on current platform")
|
||
|
}
|