mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-04 11:03:58 +00:00
12 lines
197 B
Go
12 lines
197 B
Go
// +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")
|
|
}
|