5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-10 05:10:26 +00:00
This commit is contained in:
Neil Alexander 2018-05-20 17:25:13 +01:00
parent a6ef7166ea
commit 9713e73969
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -501,18 +501,18 @@ func (a *admin) getResponse_dot() []byte {
sessions := a.getData_getSessions()
// Map of coords onto IP
m := make(map[string]string)
m[self["coords"].(string)] = self["IP"].(string)
m[self["coords"].(string)] = self["ip"].(string)
for _, peer := range peers {
p := peer.asMap()
m[p["coords"].(string)] = p["IP"].(string)
m[p["coords"].(string)] = p["ip"].(string)
}
for _, node := range dht {
n := node.asMap()
m[n["coords"].(string)] = n["IP"].(string)
m[n["coords"].(string)] = n["ip"].(string)
}
for _, node := range sessions {
n := node.asMap()
m[n["coords"].(string)] = n["IP"].(string)
m[n["coords"].(string)] = n["ip"].(string)
}
// Start building a tree from all known nodes