Files
tun/control/mark_other.go
Shiming Zhang b09240f34d First commit
2022-02-26 04:25:43 +08:00

15 lines
230 B
Go

//go:build !linux
package control
import (
"fmt"
"syscall"
)
func ControlSocketMark(m int) ControlFunc {
return func(_, _ string, c syscall.RawConn) (err error) {
return fmt.Errorf("socket mark unsupported platform")
}
}