diff options
author | Patrik Flykt <patrik.flykt@linux.intel.com> | 2014-10-08 11:00:07 +0300 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2014-10-09 14:57:53 +0300 |
commit | ee3a5027f7c56df2ef47a774970433d7045c9e9f (patch) | |
tree | 8c4d53fb9be2f55479705da8920cb5c14c653e30 /src/libsystemd-network/dhcp6-internal.h | |
parent | d46fbfb48deff83943355992e55f9ef4431ff5ef (diff) |
sd-dhcp6-lease: Name the structure containing IAADDR data
With this change the DHCP6_OPTION_IAADDR_LEN define can be removed in
favor of using sizeof(). Using the name of the struct and sizeof()
makes it clearer how much and what data is being copied from the
DHCPv6 message.
Diffstat (limited to 'src/libsystemd-network/dhcp6-internal.h')
-rw-r--r-- | src/libsystemd-network/dhcp6-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-network/dhcp6-internal.h b/src/libsystemd-network/dhcp6-internal.h index 94e3a5d408..6cc0aa8a8d 100644 --- a/src/libsystemd-network/dhcp6-internal.h +++ b/src/libsystemd-network/dhcp6-internal.h @@ -38,7 +38,7 @@ struct DHCP6Address { struct in6_addr address; be32_t lifetime_preferred; be32_t lifetime_valid; - } _packed_; + } iaaddr _packed_; }; struct DHCP6IA { |