2020-11-09 10:46:10 +08:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package redir
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
func setsockopt(rc syscall.RawConn, addr string) error {
|
2020-11-19 00:56:36 +08:00
|
|
|
return errors.New("not supported on current platform")
|
2020-11-09 10:46:10 +08:00
|
|
|
}
|