mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2025-02-06 02:49:11 +01:00
13 lines
234 B
Go
13 lines
234 B
Go
// +build !linux android
|
|
|
|
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
|
|
}
|