2021-09-05 16:00:43 +02:00
|
|
|
//go:build !linux
|
2021-02-22 02:01:50 +01:00
|
|
|
// +build !linux
|
2019-11-07 17:13:05 +01: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
|
|
|
|
}
|