Fix race in stats
This commit is contained in:
		
							parent
							
								
									e04f9543c0
								
							
						
					
					
						commit
						0a68c1ab17
					
				
							
								
								
									
										4
									
								
								uapi.go
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								uapi.go
									
									
									
									
									
								
							@ -85,8 +85,8 @@ func ipcGetOperation(device *Device, socket *bufio.ReadWriter) *IPCError {
 | 
			
		||||
 | 
			
		||||
			send(fmt.Sprintf("last_handshake_time_sec=%d", secs))
 | 
			
		||||
			send(fmt.Sprintf("last_handshake_time_nsec=%d", nano))
 | 
			
		||||
			send(fmt.Sprintf("tx_bytes=%d", peer.stats.txBytes))
 | 
			
		||||
			send(fmt.Sprintf("rx_bytes=%d", peer.stats.rxBytes))
 | 
			
		||||
			send(fmt.Sprintf("tx_bytes=%d", atomic.LoadUint64(&peer.stats.txBytes)))
 | 
			
		||||
			send(fmt.Sprintf("rx_bytes=%d", atomic.LoadUint64(&peer.stats.rxBytes)))
 | 
			
		||||
			send(fmt.Sprintf("persistent_keepalive_interval=%d", peer.persistentKeepaliveInterval))
 | 
			
		||||
 | 
			
		||||
			for _, ip := range device.allowedips.EntriesForPeer(peer) {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user