move excluded prefix and length out of key for device_prefix
authorSteven Barth <steven@midlink.org>
Fri, 31 May 2013 14:56:07 +0000 (16:56 +0200)
committerSteven Barth <steven@midlink.org>
Fri, 31 May 2013 14:56:07 +0000 (16:56 +0200)
interface-ip.h

index 442830b..5cc5665 100644 (file)
@@ -65,11 +65,11 @@ struct device_prefix {
        time_t valid_until;
        time_t preferred_until;
 
-       struct in6_addr addr;
        struct in6_addr excl_addr;
+       uint8_t excl_length;
 
+       struct in6_addr addr;
        uint8_t length;
-       uint8_t excl_length;
 
        char pclass[];
 };