frontend: remove brackets from ASN (caused by confederation)

This commit is contained in:
Lan Tian 2020-05-04 12:42:18 +08:00
parent 89fe931abe
commit fe42879d20
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22

View File

@ -74,6 +74,11 @@ func birdRouteToGraphviz(servers []string, responses []string, target string) st
// Connect each node on AS path
paths := strings.Split(strings.TrimSpace(routeASPath), " ")
for pathIndex := range paths {
paths[pathIndex] = strings.TrimPrefix(paths[pathIndex], "(")
paths[pathIndex] = strings.TrimSuffix(paths[pathIndex], ")")
}
// First step starting from originating server
if len(paths) > 0 {
if len(routeNexthop) > 0 {