mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-11-04 10:01:05 +01:00 
			
		
		
		
	Do not lint the protocol magic numbers
I happily use https://pkg.go.dev/golang.org/x/net/internal/iana, but it is internal
This commit is contained in:
		
							parent
							
								
									ab1aac9f3e
								
							
						
					
					
						commit
						8287ba24b9
					
				
							
								
								
									
										4
									
								
								acls.go
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								acls.go
									
									
									
									
									
								
							@ -23,7 +23,7 @@ const (
 | 
			
		||||
	errInvalidGroup      = Error("invalid group")
 | 
			
		||||
	errInvalidTag        = Error("invalid tag")
 | 
			
		||||
	errInvalidPortFormat = Error("invalid port format")
 | 
			
		||||
	errWildcardIsNeeded  = Error("wildcard as port is required for the procotol")
 | 
			
		||||
	errWildcardIsNeeded  = Error("wildcard as port is required for the protocol")
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
@ -267,7 +267,7 @@ func parseProtocol(protocol string) ([]int, bool, error) {
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return nil, false, err
 | 
			
		||||
		}
 | 
			
		||||
		needsWildcard := protocolNumber != 6 && protocolNumber != 17 && protocolNumber != 132
 | 
			
		||||
		needsWildcard := protocolNumber != 6 && protocolNumber != 17 && protocolNumber != 132 // nolint
 | 
			
		||||
 | 
			
		||||
		return []int{protocolNumber}, needsWildcard, nil
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user