diff options
author | Steven Barth <steven@midlink.org> | 2013-05-31 16:56:07 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2013-05-31 16:56:07 +0200 |
commit | 39efab1db589c30317de9ed2c6dc700bb1252e13 (patch) | |
tree | 25c6489b7f45a7a090d4613f9bc39bda51d95a52 | |
parent | c291a2f0a97fc766fea8e52f19f94412d54096bd (diff) |
move excluded prefix and length out of key for device_prefix
-rw-r--r-- | interface-ip.h | 4 |
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[]; }; |