1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00

Send notifications when enabling a route

This commit is contained in:
Juan Font 2021-08-16 00:17:26 +02:00
parent 9c2a630055
commit a376b697c0

View File

@ -45,19 +45,12 @@ func (h *Headscale) EnableNodeRoute(namespace string, nodeName string, routeStr
m.EnabledRoutes = datatypes.JSON(routes)
h.db.Save(&m)
// THIS IS COMPLETELY USELESS.
// The peers map is stored in memory in the server process.
// Definitely not accessible from the CLI tool.
// We need RPC to the server - or some kind of 'needsUpdate' field in the DB
peers, _ := h.getPeers(*m)
for _, p := range *peers {
if pUp, ok := h.clientsPolling.Load(uint64(p.ID)); ok {
pUp.(chan []byte) <- []byte{}
}
err = h.RequestMapUpdates(m.NamespaceID)
if err != nil {
return nil, err
}
return &rIP, nil
}
}
return nil, errors.New("could not find routable range")
}