mirror of
https://git.zx2c4.com/wireguard-go
synced 2026-05-13 22:11:26 +00:00
13 lines
224 B
Go
13 lines
224 B
Go
//go:build !linux
|
|
|
|
package device
|
|
|
|
import (
|
|
"golang.zx2c4.com/wireguard/conn"
|
|
"golang.zx2c4.com/wireguard/rwcancel"
|
|
)
|
|
|
|
func (device *Device) startRouteListener(_ conn.Bind) (*rwcancel.RWCancel, error) {
|
|
return nil, nil
|
|
}
|