13 lines
226 B
Go
13 lines
226 B
Go
|
// +build !linux
|
||
|
|
||
|
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
|
||
|
}
|