base-files: add network_get_ipaddrs_all()
authorSteven Barth <cyrus@openwrt.org>
Thu, 9 Oct 2014 07:16:29 +0000 (07:16 +0000)
committerSteven Barth <cyrus@openwrt.org>
Thu, 9 Oct 2014 07:16:29 +0000 (07:16 +0000)
Return all IPv4 and IPv6 addresses.

Signed-off-by: Mathias Kresin <openwrt@kresin.me>
SVN-Revision: 42856

package/base-files/files/lib/functions/network.sh

index 3a6903f2deff3d307961f96d27a6dad0eab18633..1b0c717204d69ec0f89dd02282be6f279a673b6e 100644 (file)
@@ -94,6 +94,29 @@ network_get_ipaddrs6() {
        return 1
 }
 
+# determine all IP addresses of given logical interface
+# 1: destination variable
+# 2: interface
+network_get_ipaddrs_all() {
+       local __addr
+       local __list=""
+
+       if __network_ifstatus "__addr" "$2" "['ipv4-address','ipv6-address','ipv6-prefix-assignment'][*].address"; then
+               for __addr in $__addr; do
+                       case "$__addr" in
+                               *:) __list="${__list:+$__list }${__addr}1" ;;
+                               *)  __list="${__list:+$__list }${__addr}"  ;;
+                       esac
+               done
+
+               export "$1=$__list"
+               return 0
+       fi
+
+       unset "$1"
+       return 1
+}
+
 # determine all IPv4 subnets of given logical interface
 # 1: destination variable
 # 2: interface