Kea
1.9.9-git
|
Implements the logic for the Option6ClientFqdn class. More...
Public Member Functions | |
Option6ClientFqdnImpl (const uint8_t flags, const std::string &domain_name, const Option6ClientFqdn::DomainNameType name_type) | |
Constructor, from domain name. More... | |
Option6ClientFqdnImpl (OptionBufferConstIter first, OptionBufferConstIter last) | |
Constructor, from wire data. More... | |
Option6ClientFqdnImpl (const Option6ClientFqdnImpl &source) | |
Copy constructor. More... | |
Option6ClientFqdnImpl & | operator= (const Option6ClientFqdnImpl &source) |
Assignment operator. More... | |
void | parseWireData (OptionBufferConstIter first, OptionBufferConstIter last) |
Parse the Option provided in the wire format. More... | |
void | setDomainName (const std::string &domain_name, const Option6ClientFqdn::DomainNameType name_type) |
Set a new domain name for the option. More... | |
Static Public Member Functions | |
static void | checkFlags (const uint8_t flags, const bool check_mbz) |
Check if flags are valid. More... | |
Public Attributes | |
boost::shared_ptr< isc::dns::Name > | domain_name_ |
Holds the pointer to a domain name carried in the option. More... | |
Option6ClientFqdn::DomainNameType | domain_name_type_ |
Indicates whether domain name is partial or fully qualified. More... | |
uint8_t | flags_ |
Holds flags carried by the option. More... | |
Implements the logic for the Option6ClientFqdn class.
The purpose of the class is to separate the implementation details of the Option6ClientFqdn class from the interface. This implementation uses kea-libdns classes to process FQDNs. At some point it may be desired to split kea-libdhcp++ from kea-libdns. In such case the implementation of this class may be changed. The declaration of the Option6ClientFqdn class holds the pointer to implementation, so the transition to a different implementation would not affect the header file.
Definition at line 30 of file option6_client_fqdn.cc.
isc::dhcp::Option6ClientFqdnImpl::Option6ClientFqdnImpl | ( | const uint8_t | flags, |
const std::string & | domain_name, | ||
const Option6ClientFqdn::DomainNameType | name_type | ||
) |
Constructor, from domain name.
flags | A value of the flags option field. |
domain_name | A domain name carried by the option given in the textual format. |
name_type | A value which indicates whether domain-name is partial or fully qualified. |
Definition at line 102 of file option6_client_fqdn.cc.
References checkFlags(), flags_, and setDomainName().
isc::dhcp::Option6ClientFqdnImpl::Option6ClientFqdnImpl | ( | OptionBufferConstIter | first, |
OptionBufferConstIter | last | ||
) |
Constructor, from wire data.
first | An iterator pointing to the beginning of the option data in the wire format. |
last | An iterator pointing to the end of the option data in the wire format. |
Definition at line 121 of file option6_client_fqdn.cc.
References checkFlags(), flags_, and parseWireData().
isc::dhcp::Option6ClientFqdnImpl::Option6ClientFqdnImpl | ( | const Option6ClientFqdnImpl & | source | ) |
Copy constructor.
source | An object being copied. |
Definition at line 130 of file option6_client_fqdn.cc.
References domain_name_.
|
static |
Check if flags are valid.
In particular, this function checks if the N and S bits are not set to 1 in the same time.
flags | A value carried by the flags field of the option. |
check_mbz | A boolean value which indicates if this function should check if the MBZ bits are set (if true). This parameter should be set to false when validating flags in the received message. This is because server should ignore MBZ bits in received messages. |
InvalidOption6FqdnFlags | if flags are invalid. |
Definition at line 198 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdn::FLAG_MASK, isc::dhcp::Option6ClientFqdn::FLAG_N, isc::dhcp::Option6ClientFqdn::FLAG_S, and isc_throw.
Referenced by Option6ClientFqdnImpl(), isc::dhcp::Option6ClientFqdn::setFlag(), and isc::dhcp::Option6ClientFqdn::unpack().
Option6ClientFqdnImpl & isc::dhcp::Option6ClientFqdnImpl::operator= | ( | const Option6ClientFqdnImpl & | source | ) |
Assignment operator.
source | An object which is being assigned. |
Definition at line 143 of file option6_client_fqdn.cc.
References domain_name_, domain_name_type_, and flags_.
void isc::dhcp::Option6ClientFqdnImpl::parseWireData | ( | OptionBufferConstIter | first, |
OptionBufferConstIter | last | ||
) |
Parse the Option provided in the wire format.
first | An iterator pointing to the beginning of the option data in the wire format. |
last | An iterator pointing to the end of the option data in the wire format. |
Definition at line 218 of file option6_client_fqdn.cc.
References D6O_CLIENT_FQDN, domain_name_, domain_name_type_, isc::dhcp::Option6ClientFqdn::FLAG_FIELD_LEN, flags_, isc::dhcp::Option6ClientFqdn::FULL, isc_throw, and isc::dhcp::Option6ClientFqdn::PARTIAL.
Referenced by Option6ClientFqdnImpl(), and isc::dhcp::Option6ClientFqdn::unpack().
void isc::dhcp::Option6ClientFqdnImpl::setDomainName | ( | const std::string & | domain_name, |
const Option6ClientFqdn::DomainNameType | name_type | ||
) |
Set a new domain name for the option.
domain_name | A new domain name to be assigned. |
name_type | A value which indicates whether the domain-name is partial or fully qualified. |
Definition at line 161 of file option6_client_fqdn.cc.
References domain_name_, domain_name_type_, isc::dhcp::Option6ClientFqdn::FULL, isc_throw, and isc::util::str::trim().
Referenced by Option6ClientFqdnImpl(), and isc::dhcp::Option6ClientFqdn::setDomainName().
boost::shared_ptr<isc::dns::Name> isc::dhcp::Option6ClientFqdnImpl::domain_name_ |
Holds the pointer to a domain name carried in the option.
Definition at line 35 of file option6_client_fqdn.cc.
Referenced by isc::dhcp::Option6ClientFqdn::getDomainName(), isc::dhcp::Option6ClientFqdn::len(), operator=(), Option6ClientFqdnImpl(), isc::dhcp::Option6ClientFqdn::packDomainName(), parseWireData(), and setDomainName().
Option6ClientFqdn::DomainNameType isc::dhcp::Option6ClientFqdnImpl::domain_name_type_ |
Indicates whether domain name is partial or fully qualified.
Definition at line 37 of file option6_client_fqdn.cc.
Referenced by isc::dhcp::Option6ClientFqdn::getDomainName(), isc::dhcp::Option6ClientFqdn::getDomainNameType(), isc::dhcp::Option6ClientFqdn::len(), operator=(), isc::dhcp::Option6ClientFqdn::packDomainName(), parseWireData(), and setDomainName().
uint8_t isc::dhcp::Option6ClientFqdnImpl::flags_ |
Holds flags carried by the option.
Definition at line 33 of file option6_client_fqdn.cc.
Referenced by isc::dhcp::Option6ClientFqdn::getFlag(), operator=(), Option6ClientFqdnImpl(), isc::dhcp::Option6ClientFqdn::pack(), parseWireData(), isc::dhcp::Option6ClientFqdn::resetFlags(), isc::dhcp::Option6ClientFqdn::setFlag(), and isc::dhcp::Option6ClientFqdn::unpack().