svdo/swift-netutils
Swift library that simplifies getting information about your network interfaces
Background Info
Some system APIs you can simply use from Swift, but others you cannot. The difference is that some are made available as a module, and some are not. The APIs around network interfaces are not exposed as a module, which means that you cannot use them from Swift without defining a module for them yourself. I documented this problem extensively [in a blog post][blog-post].
Installation
This library can be installed via CocoaPods, Carthage and Swift Package Manager.
Usage
This module contains only one class: Interface. This class represents a network interface. It has a static method to list all interfaces, somewhat surprisingly called allInterfaces(). This will return an array of Interface objects, which contain properties like their IP address, family, whether they are up and running, etc.
Please note that both IPv4 and IPv6 interfaces are supported.
License
This project is released under the MIT license.
[blog-post]: https://medium.com/@stefanvdoord/using-system-headers-in-swift-8731e972adfe
Package Metadata
Repository: svdo/swift-netutils
Default branch: master
README: README.md