mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	chore(fmt): apply fmt
This commit is contained in:
		
							parent
							
								
									baae266db0
								
							
						
					
					
						commit
						650108c7c7
					
				
							
								
								
									
										14
									
								
								machine.go
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								machine.go
									
									
									
									
									
								
							@ -197,8 +197,18 @@ func getFilteredByACLPeers(
 | 
			
		||||
				machine.IPAddresses.ToStringSlice(),
 | 
			
		||||
				peer.IPAddresses.ToStringSlice(),
 | 
			
		||||
			) || // match source and destination
 | 
			
		||||
				matchSourceAndDestinationWithRule(rule.SrcIPs, dst, machine.IPAddresses.ToStringSlice(), []string{"*"}) || // match source and all destination
 | 
			
		||||
				matchSourceAndDestinationWithRule(rule.SrcIPs, dst, peer.IPAddresses.ToStringSlice(), machine.IPAddresses.ToStringSlice()) { // match return path
 | 
			
		||||
				matchSourceAndDestinationWithRule(
 | 
			
		||||
					rule.SrcIPs,
 | 
			
		||||
					dst,
 | 
			
		||||
					machine.IPAddresses.ToStringSlice(),
 | 
			
		||||
					[]string{"*"},
 | 
			
		||||
				) || // match source and all destination
 | 
			
		||||
				matchSourceAndDestinationWithRule(
 | 
			
		||||
					rule.SrcIPs,
 | 
			
		||||
					dst,
 | 
			
		||||
					peer.IPAddresses.ToStringSlice(),
 | 
			
		||||
					machine.IPAddresses.ToStringSlice(),
 | 
			
		||||
				) { // match return path
 | 
			
		||||
				peers[peer.ID] = peer
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user