We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd90b66 commit 57b3be2Copy full SHA for 57b3be2
README.md
@@ -1,13 +1,13 @@
1
-# NetworkInterfaces.jl
+# NetworkInterfaceControllers.jl
2
Extensions to Julia's LibUV to help with working with multiple NICs per node.
3
4
## Methods
5
6
1. `get_interface_data(<:IPAddr; loopback=false)` returns IP addresses, versions, and interface names of all connected interfaces. Eg:
7
```julia
8
-julia> using NetworkInterfaces,Sockets
+julia> using NetworkInterfaceControllers, Sockets
9
julia> get_interface_data(IPv4)
10
-1-element Vector{NetworkInterfaces.Interface}:
+1-element Vector{NetworkInterfaceControllers.Interface}:
11
NetworkInterfaces.Interface("wlp114s0", :v4, ip"192.168.100.64")
12
```
13
Helpful when multiple NICs are connected to a node, and you want to find the IP address corresponding to a specific NIC
0 commit comments