X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=system-dummy.c;h=a5d352d7c2454098e1f123f6bc4d0e0e6b5a591d;hb=367f5edba8abe7e03890ceb00c00617d64d7bf73;hp=b3efa08b2c4399c639bd2f122d325149e9574923;hpb=818abd9f2f42c36a0f91ff6d29a9a635398216e0;p=project%2Fnetifd.git diff --git a/system-dummy.c b/system-dummy.c index b3efa08..a5d352d 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -1,6 +1,8 @@ #include #include +#include + #ifndef DEBUG #define DEBUG #endif @@ -9,6 +11,11 @@ #include "device.h" #include "system.h" +int system_init(void) +{ + return 0; +} + int system_bridge_addbr(struct device *bridge) { DPRINTF("brctl addbr %s\n", bridge->ifname); @@ -70,11 +77,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 +95,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; }