[LEDE-DEV] [PATCH netifd 2/2] ubus: display the point-to-point IPv4 address

Hans Dedecker dedeckeh at gmail.com
Tue Oct 17 13:16:44 PDT 2017


Display the point-to-point IPv4 address as well when dumping
the IP address list in ubus.

Signed-off-by: Hans Dedecker <dedeckeh at gmail.com>
---
 ubus.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/ubus.c b/ubus.c
index ebf9891..96bc247 100644
--- a/ubus.c
+++ b/ubus.c
@@ -441,6 +441,12 @@ interface_ip_dump_address_list(struct interface_ip_settings *ip, bool v6, bool e
 
 		blobmsg_add_u32(&b, "mask", addr->mask);
 
+		if (addr->point_to_point) {
+			buf = blobmsg_alloc_string_buffer(&b, "ptpaddress", buflen);
+			inet_ntop(af, &addr->point_to_point, buf, buflen);
+			blobmsg_add_string_buffer(&b);
+		}
+
 		if (addr->preferred_until) {
 			int preferred = addr->preferred_until - now;
 			if (preferred < 0)
-- 
2.14.2




More information about the Lede-dev mailing list