2021-09-05 14:00:43 +00:00
|
|
|
//go:build !linux
|
2021-02-22 01:01:50 +00:00
|
|
|
// +build !linux
|
2019-11-07 16:13:05 +00:00
|
|
|
|
|
|
|
package device
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.zx2c4.com/wireguard/conn"
|
|
|
|
"golang.zx2c4.com/wireguard/rwcancel"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (device *Device) startRouteListener(bind conn.Bind) (*rwcancel.RWCancel, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|