mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-01-09 10:49:35 +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")
|
|
}
|