![]() |
Kea
2.3.5-git
|
Union for marshalling IAID into and out of the database IAID is defined in the RFC as 4 octets, which Kea code handles as a uint32_t. More...
Public Member Functions | |
Uiaid (uint32_t val) | |
Constructor. More... | |
Uiaid (int32_t val) | |
Constructor. More... | |
std::string | dbInputString () |
Return a string representing the signed 32-bit value. More... | |
Public Attributes | |
int32_t | ival_ |
uint32_t | uval_ |
Union for marshalling IAID into and out of the database IAID is defined in the RFC as 4 octets, which Kea code handles as a uint32_t.
Postgresql however, offers only signed integer types of sizes 2, 4, and 8 bytes (SMALLINT, INT, and BIGINT respectively). IAID is used in several indexes so rather than use the BIGINT, we use this union to safely move the value into and out of an INT column.
Definition at line 701 of file pgsql_lease_mgr.cc.
|
inline |
Constructor.
val | unsigned 32 bit value for the IAID. |
Definition at line 704 of file pgsql_lease_mgr.cc.
|
inline |
Constructor.
val | signed 32 bit value for the IAID. |
Definition at line 708 of file pgsql_lease_mgr.cc.
|
inline |
Return a string representing the signed 32-bit value.
Definition at line 711 of file pgsql_lease_mgr.cc.
Referenced by isc::dhcp::PgSqlLeaseMgr::getLeases6().
int32_t isc::dhcp::PgSqlLease6Exchange::Uiaid::ival_ |
Definition at line 716 of file pgsql_lease_mgr.cc.
uint32_t isc::dhcp::PgSqlLease6Exchange::Uiaid::uval_ |
Definition at line 713 of file pgsql_lease_mgr.cc.