summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-09-12 13:52:29 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-09-12 13:52:29 +0200
commita7d0fa57b4bbc3c61a94dfe4d47490b296e12b6c (patch)
tree522751b4416077448526f702801a93efb81b1f46
parentbe8cbaecc2490b561bb7d7df81da1bb6258e92b5 (diff)
system-dummy: print ipv6 addresses on address add/remove
-rw-r--r--system-dummy.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/system-dummy.c b/system-dummy.c
index b3efa08..5aa51c0 100644
--- a/system-dummy.c
+++ b/system-dummy.c
@@ -1,6 +1,8 @@
#include <stdio.h>
#include <string.h>
+#include <arpa/inet.h>
+
#ifndef DEBUG
#define DEBUG
#endif
@@ -70,11 +72,15 @@ int system_if_check(struct device *dev)
int system_add_address(struct device *dev, struct device_addr *addr)
{
uint8_t *a = (uint8_t *) &addr->addr.in;
+ char ipaddr[64];
if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4) {
DPRINTF("ifconfig %s add %d.%d.%d.%d/%d\n",
dev->ifname, a[0], a[1], a[2], a[3], addr->mask);
} else {
+ inet_ntop(AF_INET6, &addr->addr.in6, ipaddr, sizeof(struct in6_addr));
+ DPRINTF("ifconfig %s add %s/%d\n",
+ dev->ifname, ipaddr, addr->mask);
return -1;
}
@@ -84,11 +90,15 @@ int system_add_address(struct device *dev, struct device_addr *addr)
int system_del_address(struct device *dev, struct device_addr *addr)
{
uint8_t *a = (uint8_t *) &addr->addr.in;
+ char ipaddr[64];
if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4) {
DPRINTF("ifconfig %s del %d.%d.%d.%d\n",
dev->ifname, a[0], a[1], a[2], a[3]);
} else {
+ inet_ntop(AF_INET6, &addr->addr.in6, ipaddr, sizeof(struct in6_addr));
+ DPRINTF("ifconfig %s del %s/%d\n",
+ dev->ifname, ipaddr, addr->mask);
return -1;
}