system-dummy: print ipv6 addresses on address add/remove
[project/netifd.git] / system-dummy.c
index f24f686925a113abdc042dbd9c0cc11ba5e85185..5aa51c035510e73f41f3b6a1eac18a36f7390563 100644 (file)
@@ -1,8 +1,15 @@
 #include <stdio.h>
 #include <string.h>
 
+#include <arpa/inet.h>
+
+#ifndef DEBUG
+#define DEBUG
+#endif
+
 #include "netifd.h"
 #include "device.h"
+#include "system.h"
 
 int system_bridge_addbr(struct device *bridge)
 {
@@ -57,7 +64,7 @@ int system_if_check(struct device *dev)
        dev->ifindex = 0;
 
        if (!strcmp(dev->ifname, "eth0"))
-               set_device_present(dev, true);
+               device_set_present(dev, true);
 
        return 0;
 }
@@ -65,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;
        }
 
@@ -79,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;
        }