Last active
October 15, 2024 13:35
-
-
Save camyoh/aa341e4e40afaa40c84813d899369566 to your computer and use it in GitHub Desktop.
Get the IP on iphone, swift 5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let ipName = getIpAddress() ?? "" | |
func getIpAddress() -> String? { | |
var address : String? | |
// Get list of all interfaces on the local machine: | |
var ifaddr : UnsafeMutablePointer<ifaddrs>? | |
guard getifaddrs(&ifaddr) == 0 else { return nil } | |
guard let firstAddr = ifaddr else { return nil } | |
// For each interface ... | |
for ifptr in sequence(first: firstAddr, next: { $0.pointee.ifa_next }) { | |
let interface = ifptr.pointee | |
// Check for IPv4 or IPv6 interface: | |
let addrFamily = interface.ifa_addr.pointee.sa_family | |
if addrFamily == UInt8(AF_INET) || addrFamily == UInt8(AF_INET6) { | |
// Check interface name: | |
let name = String(cString: interface.ifa_name) | |
if name == "en0" { | |
// Convert interface address to a human readable string: | |
var hostname = [CChar](repeating: 0, count: Int(NI_MAXHOST)) | |
getnameinfo(interface.ifa_addr, socklen_t(interface.ifa_addr.pointee.sa_len), | |
&hostname, socklen_t(hostname.count), | |
nil, socklen_t(0), NI_NUMERICHOST) | |
address = String(cString: hostname) | |
} else if (name == "pdp_ip0" || name == "pdp_ip1" || name == "pdp_ip2" || name == "pdp_ip3") { | |
// Convert interface address to a human readable string: | |
var hostname = [CChar](repeating: 0, count: Int(NI_MAXHOST)) | |
getnameinfo(interface.ifa_addr, socklen_t(interface.ifa_addr.pointee.sa_len), | |
&hostname, socklen_t(hostname.count), | |
nil, socklen_t(1), NI_NUMERICHOST) | |
address = String(cString: hostname) | |
} | |
} | |
} | |
freeifaddrs(ifaddr) | |
return address | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well done!