mirror of
https://github.com/nadoo/glider.git
synced 2025-02-24 01:45:39 +08:00
12 lines
181 B
Go
12 lines
181 B
Go
![]() |
//go:build !linux
|
||
|
// +build !linux
|
||
|
|
||
|
package sockopt
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
func BindControl(iface *net.Interface) func(string, string, syscall.RawConn) error { return nil }
|