mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			13 lines
		
	
	
		
			319 B
		
	
	
	
		
			Swift
		
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			319 B
		
	
	
	
		
			Swift
		
	
| 
											5 years ago
										 | 
 | ||
|  | public enum IPv4 { | ||
|  |      | ||
|  |     public static func toInt(_ ip: String) -> Int { | ||
|  |         let octets: [Int] = ip.split(separator: ".").map { Int($0)! } | ||
|  |         var result: Int = 0 | ||
|  |         for i in stride(from: 3, through: 0, by: -1) { | ||
|  |             result += octets[ 3 - i ] << (i * 8) | ||
|  |         } | ||
|  |         return result | ||
|  |     } | ||
|  | } |