mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 03:05:07 +03:00 
			
		
		
		
	Update getRoutes format
This commit is contained in:
		
							parent
							
								
									14f4da764c
								
							
						
					
					
						commit
						f09adc2192
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -268,11 +268,11 @@ func (a *admin) init(c *Core, listenaddr string) {
 | 
			
		|||
		return admin_info{"source_subnets": subnets}, nil
 | 
			
		||||
	})
 | 
			
		||||
	a.addHandler("getRoutes", []string{}, func(in admin_info) (admin_info, error) {
 | 
			
		||||
		var routes []string
 | 
			
		||||
		routes := make(admin_info)
 | 
			
		||||
		a.core.router.doAdmin(func() {
 | 
			
		||||
			getRoutes := func(ckrs []cryptokey_route) {
 | 
			
		||||
				for _, ckr := range ckrs {
 | 
			
		||||
					routes = append(routes, fmt.Sprintf("%s via %s", ckr.subnet.String(), hex.EncodeToString(ckr.destination[:])))
 | 
			
		||||
					routes[ckr.subnet.String()] = hex.EncodeToString(ckr.destination[:])
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
			getRoutes(a.core.router.cryptokey.ipv4routes)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue