Clash.Meta/proxy/redir/udp_other.go

13 lines
197 B
Go
Raw Normal View History

// +build !linux
package redir
import (
"errors"
"net"
)
func getOrigDst(oob []byte, oobn int) (*net.UDPAddr, error) {
return nil, errors.New("UDP redir not supported on current platform")
}