projects
/
oweals
/
netifd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
465efe7
)
netifd: Export ip4table/ip6table via UBUS
author
Hans Dedecker
<dedeckeh@gmail.com>
Tue, 19 Nov 2013 11:17:03 +0000
(12:17 +0100)
committer
Felix Fietkau
<nbd@openwrt.org>
Sun, 8 Dec 2013 17:43:51 +0000
(18:43 +0100)
Export ip4table/ip6table parameters via UBUS to facilitate
route inspection and usage by other applications
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
ubus.c
patch
|
blob
|
history
diff --git
a/ubus.c
b/ubus.c
index e563e1f5f56069e6a9f762c94ad6886cd3784795..794444e8102896173cb42b100d8f0dfe801ba926 100644
(file)
--- a/
ubus.c
+++ b/
ubus.c
@@
-659,6
+659,10
@@
netifd_dump_status(struct interface *iface)
blobmsg_add_string(&b, "device", dev->ifname);
if (iface->state == IFS_UP) {
+ if (iface->ip4table)
+ blobmsg_add_u32(&b, "ip4table", iface->ip4table);
+ if (iface->ip6table)
+ blobmsg_add_u32(&b, "ip6table", iface->ip6table);
blobmsg_add_u32(&b, "metric", iface->metric);
blobmsg_add_u8(&b, "delegation", !iface->proto_ip.no_delegation);
a = blobmsg_open_array(&b, "ipv4-address");