29 typedef boost::shared_ptr<Lease>
LeasePtr;
108 uint32_t valid_lft, SubnetID subnet_id, time_t cltt,
109 const bool fqdn_fwd,
const bool fqdn_rev,
110 const std::string& hostname,
189 virtual std::string
toText()
const = 0;
242 virtual void decline(uint32_t probation_period) = 0;
286 typedef boost::shared_ptr<Lease4>
Lease4Ptr;
315 const uint8_t* clientid,
size_t clientid_len, uint32_t valid_lft,
316 time_t cltt, uint32_t subnet_id,
317 const bool fqdn_fwd =
false,
const bool fqdn_rev =
false,
318 const std::string& hostname =
"")
319 :
Lease(addr, valid_lft, subnet_id, cltt, fqdn_fwd, fqdn_rev,
322 client_id_.reset(
new ClientId(clientid, clientid_len));
340 const uint32_t valid_lifetime,
342 const SubnetID subnet_id,
343 const bool fqdn_fwd =
false,
344 const bool fqdn_rev =
false,
345 const std::string& hostname =
"");
458 return (!
operator==(other));
464 virtual std::string
toText()
const;
471 void decline(uint32_t probation_period);
495 typedef boost::shared_ptr<Lease6>
Lease6Ptr;
552 uint32_t iaid, uint32_t preferred, uint32_t valid,
554 uint8_t prefixlen = 128);
571 uint32_t iaid, uint32_t preferred, uint32_t valid,
572 SubnetID subnet_id,
const bool fqdn_fwd,
573 const bool fqdn_rev,
const std::string& hostname,
606 void decline(uint32_t probation_period);
617 return (!
operator==(other));
623 virtual std::string
toText()
const;
virtual std::string toText() const
Convert Lease to Printable Form.
static std::string lifetimeToText(uint32_t lifetime)
Print lifetime.
bool operator==(const Lease6 &other) const
Compare two leases for equality.
uint32_t state_
Holds the lease state(s).
boost::shared_ptr< DUID > DuidPtr
HWAddrPtr hwaddr_
Client's MAC/hardware address.
uint32_t iaid_
Identity Association Identifier (IAID)
bool stateDeclined() const
Indicates if the lease is in the "declined" state.
static const uint32_t STATE_EXPIRED_RECLAIMED
Expired and reclaimed lease.
Structure that holds a lease for IPv4 address.
uint32_t reuseable_preferred_lft_
Remaining preferred lifetime.
bool fqdn_rev_
Reverse zone updated?
virtual void decline(uint32_t probation_period)=0
Sets lease to DECLINED state.
boost::shared_ptr< HWAddr > HWAddrPtr
Shared pointer to a hardware address structure.
static std::string typeToText(Type type)
returns text representation of a lease type
virtual std::string toText() const
Convert lease to printable form.
Base class for user context.
time_t cltt_
Client last transmission time.
bool operator!=(const Lease6 &other) const
Compare two leases for inequality.
uint32_t preferred_lft_
Preferred lifetime.
bool fqdn_fwd_
Forward zone updated?
const std::vector< uint8_t > & getClientIdVector() const
Returns a client identifier.
std::vector< Lease4Ptr > Lease4Collection
A collection of IPv4 leases.
static Lease4Ptr fromElement(const data::ConstElementPtr &element)
Returns pointer to the IPv4 lease created from JSON representation.
the lease contains IPv6 prefix (for prefix delegation)
boost::shared_ptr< Element > ElementPtr
const std::vector< uint8_t > & getHWAddrVector() const
Returns raw (as vector) hardware address.
void decline(uint32_t probation_period)
Sets IPv4 lease to declined state.
std::string hostname_
Client hostname.
boost::shared_ptr< const Lease6 > ConstLease6Ptr
Pointer to a const Lease6 structure.
SubnetID subnet_id_
Subnet identifier.
virtual std::string toText() const =0
Convert Lease to Printable Form.
boost::shared_ptr< Lease > LeasePtr
Pointer to the lease object.
bool operator!=(const Lease4 &other) const
Compare two leases for inequality.
static void syncCurrentExpirationTime(const Lease &from, Lease &to)
Sync lease current expiration time with new value from another lease, so that additional operations c...
int64_t getExpirationTime() const
Returns lease expiration time.
boost::shared_ptr< Lease4 > Lease4Ptr
Pointer to a Lease4 structure.
Abstract class for configuration Cfg_* classes.
boost::shared_ptr< Lease4Collection > Lease4CollectionPtr
A shared pointer to the collection of IPv4 leases.
Lease4()
Default constructor.
virtual isc::data::ElementPtr toElement() const
Return the JSON representation of a lease.
Lease4(const isc::asiolink::IOAddress &addr, const HWAddrPtr &hwaddr, const uint8_t *clientid, size_t clientid_len, uint32_t valid_lft, time_t cltt, uint32_t subnet_id, const bool fqdn_fwd=false, const bool fqdn_rev=false, const std::string &hostname="")
Constructor.
void updateCurrentExpirationTime()
Update lease current expiration time with new value, so that additional operations can be done withou...
boost::shared_ptr< const Element > ConstElementPtr
DuidPtr duid_
Client identifier.
Structure that holds a lease for IPv6 address and/or prefix.
ClientIdPtr client_id_
Client identifier.
Lease::Type type_
Lease type.
Lease(const isc::asiolink::IOAddress &addr, uint32_t valid_lft, SubnetID subnet_id, time_t cltt, const bool fqdn_fwd, const bool fqdn_rev, const std::string &hostname, const HWAddrPtr &hwaddr)
Constructor.
uint8_t prefixlen_
IPv6 prefix length.
std::vector< Lease6Ptr > Lease6Collection
A collection of IPv6 leases.
boost::shared_ptr< ClientId > ClientIdPtr
Shared pointer to a Client ID.
the lease contains temporary IPv6 address
the lease contains non-temporary IPv6 address
Lease4 & operator=(const Lease4 &other)
Assignment operator.
time_t current_cltt_
Current client last transmission time.
bool stateExpiredReclaimed() const
Indicates if the lease is in the "expired-reclaimed" state.
Defines the logger used by the top-level component of kea-dhcp-ddns.
static Lease6Ptr fromElement(const data::ConstElementPtr &element)
Returns pointer to the IPv6 lease created from JSON representation.
static Type textToType(const std::string &text)
Converts type name to the actual type.
static std::string statesToText(const uint32_t state)
Returns name of the lease states specific to DHCPv4.
static const uint32_t INFINITY_LFT
Infinity (means static, i.e. never expire)
a common structure for IPv4 and IPv6 leases
static std::string statesToText(const uint32_t state)
Returns name of the lease states specific to DHCPv6.
Type
Type of lease or pool.
std::ostream & operator<<(std::ostream &os, const OpaqueDataTuple &tuple)
Inserts the OpaqueDataTuple as a string into stream.
Holds Client identifier or client IPv4 address.
static std::string basicStatesToText(const uint32_t state)
Returns name(s) of the basic lease state(s).
void decline(uint32_t probation_period)
Sets IPv6 lease to declined state.
boost::shared_ptr< Lease6Collection > Lease6CollectionPtr
A shared pointer to the collection of IPv6 leases.
virtual ~Lease()
Destructor.
uint32_t reuseable_valid_lft_
Remaining valid lifetime.
isc::asiolink::IOAddress addr_
IPv4 ot IPv6 address.
static const uint32_t STATE_DEFAULT
A lease in the default state.
const std::vector< uint8_t > & getDuidVector() const
Returns a reference to a vector representing a DUID.
bool belongsToClient(const HWAddrPtr &hw_address, const ClientIdPtr &client_id) const
Check if the lease belongs to the client with the given identifiers.
virtual isc::data::ElementPtr toElement() const
Return the JSON representation of a lease.
static const uint32_t STATE_DECLINED
Declined lease.
uint32_t valid_lft_
Valid lifetime.
virtual isc::data::ElementPtr toElement() const =0
Unparse a configuration object.
The IOAddress class represents an IP addresses (version agnostic)
static void fromElementCommon(const LeasePtr &lease, const data::ConstElementPtr &element)
Sets common (for v4 and v6) properties of the lease object.
bool expired() const
returns true if the lease is expired
boost::shared_ptr< Lease6 > Lease6Ptr
Pointer to a Lease6 structure.
uint32_t current_valid_lft_
Current valid lifetime.
bool operator==(const Lease4 &other) const
Compare two leases for equality.
bool hasIdenticalFqdn(const Lease &other) const
Returns true if the other lease has equal FQDN data.
uint32_t SubnetID
Unique identifier for a subnet (both v4 and v6)