X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flibsystemd-network%2Fdhcp-lease-internal.h;h=ff09583604ab79fc8e5a8ad7f204adf24465e398;hb=966bff2660a13c82b70a1e1ac4f1a48bb33d7f7e;hp=ba2fd73b45210501f3a5fdd1f047d2a214d00a10;hpb=4684469639d0893d78fc8e1a1966ce11eb9c7e31;p=elogind.git diff --git a/src/libsystemd-network/dhcp-lease-internal.h b/src/libsystemd-network/dhcp-lease-internal.h index ba2fd73b4..ff0958360 100644 --- a/src/libsystemd-network/dhcp-lease-internal.h +++ b/src/libsystemd-network/dhcp-lease-internal.h @@ -26,6 +26,7 @@ #include #include "refcnt.h" +#include "util.h" #include "dhcp-protocol.h" @@ -34,19 +35,31 @@ struct sd_dhcp_lease { RefCount n_ref; + int32_t time_offset; uint32_t t1; uint32_t t2; uint32_t lifetime; + uint32_t mtu_aging_timeout; be32_t address; be32_t server_address; be32_t subnet_mask; be32_t router; be32_t next_server; + be32_t broadcast; struct in_addr *dns; size_t dns_size; struct in_addr *ntp; size_t ntp_size; + struct in_addr *policy_filter; + size_t policy_filter_size; + struct in_addr *static_route; + size_t static_route_size; + uint16_t boot_file_size; + uint16_t mdr; uint16_t mtu; + uint8_t ttl; + bool ip_forward; + bool ip_forward_non_local; char *domainname; char *hostname; char *root_path;