summaryrefslogtreecommitdiff
path: root/src/libsystemd-network/dhcp6-lease-internal.h
Commit message (Collapse)AuthorAge
* sd-dhcp6-client: Implement Rapid CommitPatrik Flykt2014-06-26
| | | | | | | | | | | Add a Rapid Commit option to Solicit messages and expect a Reply to be received instead of an Advertise. When receiving a DHCPv6 message from the server in state Solicit, continue testing whether the message is a Reply. Ease up the message type checking, it's not fatal if the message is of a wrong type. Add helper functions to set/get the rapid commit of a lease. See RFC 3315, sections 17., 17.1.2., 17.1.4. and 18.1.8.
* sd-dhcp6-lease: Add helper function to compute remaining expiry timePatrik Flykt2014-06-26
| | | | | | | Create a helper function to compute the remaining time in seconds from time T2 to the IPv6 address with the longest lifetime. The computed time is used as the Maximum Retransmission Duration in Rebinding state. See RFC 3315, section 18.1.4. for details.
* sd-dhcp6-lease: Add functions for accessing lease and addressesPatrik Flykt2014-06-19
| | | | | | Add support functions for accessing the current client lease as well as iterating over the addresses and get their preferred and valid lifetimes.
* sd-dhcp6-lease: Add DHCPv6 lease handlingPatrik Flykt2014-06-19
Create a structure describing a DHCPv6 lease. Add internal functions for creating a new lease and accessing the server ID, preference and IAID. Provide functions for clearing addresses and associated timers. External users are initially given only the capabilities of referencing and unreferencing the lease structure.