sticky_default.go raw

   1  //go:build !linux
   2  
   3  package device
   4  
   5  import (
   6  	"golang.zx2c4.com/wireguard/conn"
   7  	"golang.zx2c4.com/wireguard/rwcancel"
   8  )
   9  
  10  func (device *Device) startRouteListener(_ conn.Bind) (*rwcancel.RWCancel, error) {
  11  	return nil, nil
  12  }
  13