forked from extern/smegmesh
1a864b7c80
rtnetlink calls
17 lines
256 B
Go
17 lines
256 B
Go
package mesh
|
|
|
|
type RouteManagerStub struct {
|
|
}
|
|
|
|
func (r *RouteManagerStub) UpdateRoutes() error {
|
|
return nil
|
|
}
|
|
|
|
func (r *RouteManagerStub) InstallRoutes() error {
|
|
return nil
|
|
}
|
|
|
|
func (r *RouteManagerStub) RemoveRoutes(meshId string) error {
|
|
return nil
|
|
}
|