mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-02 18:14:01 +00:00
16 lines
319 B
Go
16 lines
319 B
Go
// +build !linux
|
|
|
|
package redir
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
)
|
|
|
|
func setsockopt(c *net.UDPConn, addr string) error {
|
|
return errors.New("UDP redir not supported on current platform")
|
|
}
|
|
|
|
func getOrigDst(oob []byte, oobn int) (*net.UDPAddr, error) {
|
|
return nil, errors.New("UDP redir not supported on current platform")
|
|
}
|