mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
13 lines
181 B
Go
13 lines
181 B
Go
|
// +build !linux
|
||
|
|
||
|
package redir
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
func setsockopt(rc syscall.RawConn, addr string) error {
|
||
|
return errors.New("Not supported on current platform")
|
||
|
}
|