summaryrefslogtreecommitdiff
path: root/interface-ip.h
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2013-05-31 16:56:07 +0200
committerSteven Barth <steven@midlink.org>2013-05-31 16:56:07 +0200
commit39efab1db589c30317de9ed2c6dc700bb1252e13 (patch)
tree25c6489b7f45a7a090d4613f9bc39bda51d95a52 /interface-ip.h
parentc291a2f0a97fc766fea8e52f19f94412d54096bd (diff)
downloadnetifd-39efab1db589c30317de9ed2c6dc700bb1252e13.tar.gz
move excluded prefix and length out of key for device_prefix
Diffstat (limited to 'interface-ip.h')
-rw-r--r--interface-ip.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/interface-ip.h b/interface-ip.h
index 442830b..5cc5665 100644
--- a/interface-ip.h
+++ b/interface-ip.h
@@ -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[];
};