mirror of
https://github.com/nadoo/glider.git
synced 2025-02-23 17:35:40 +08:00
11 lines
181 B
Go
11 lines
181 B
Go
//go:build !linux && !darwin
|
|
// +build !linux,!darwin
|
|
|
|
package sockopt
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func control(opt *Options) func(string, string, syscall.RawConn) error { return nil }
|