2021-09-05 16:00:43 +02:00
|
|
|
//go:build !linux
|
2019-11-07 17:13:05 +01:00
|
|
|
|
|
|
|
package device
|
|
|
|
|
|
|
|
import (
|
2024-01-07 20:03:11 +01:00
|
|
|
"gitea.hbanafa.com/hesham/wireguard-go/conn"
|
|
|
|
"gitea.hbanafa.com/hesham/wireguard-go/rwcancel"
|
2019-11-07 17:13:05 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func (device *Device) startRouteListener(bind conn.Bind) (*rwcancel.RWCancel, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|