Kea
1.9.9-git
|
Storage for High Availability configuration. More...
#include <ha_config.h>
Classes | |
class | PeerConfig |
HA peer configuration. More... | |
class | StateConfig |
Configuration specific to a single HA state. More... | |
class | StateMachineConfig |
State machine configuration information. More... | |
Public Types | |
enum | HAMode { LOAD_BALANCING, HOT_STANDBY, PASSIVE_BACKUP } |
Mode of operation. More... | |
typedef std::map< std::string, PeerConfigPtr > | PeerConfigMap |
Map of the servers' configurations. More... | |
typedef boost::shared_ptr< PeerConfig > | PeerConfigPtr |
Pointer to the server's configuration. More... | |
typedef boost::shared_ptr< StateConfig > | StateConfigPtr |
Pointer to the state configuration. More... | |
typedef boost::shared_ptr< StateMachineConfig > | StateMachineConfigPtr |
Pointer to a state machine configuration. More... | |
Public Member Functions | |
HAConfig () | |
Constructor. More... | |
bool | amAllowingCommRecovery () const |
Convenience function checking if communication recovery is allowed. More... | |
bool | amSendingLeaseUpdates () const |
Returns boolean flag indicating whether lease updates should be sent to the partner. More... | |
bool | amSyncingLeases () const |
Returns boolean flag indicating whether the active servers should synchronize their lease databases upon startup. More... | |
bool | amWaitingBackupAck () const |
Checks if the server is configured to wait for the acknowledgments to the lease updates from the backup server or not. More... | |
PeerConfigMap | getAllServersConfig () const |
Returns configurations of all servers. More... | |
util::Optional< std::string > | getCertFile () const |
Returns global cert-file. More... | |
uint32_t | getDelayedUpdatesLimit () const |
Returns the maximum number of lease updates which can be held unsent in the communication-recovery state. More... | |
bool | getEnableMultiThreading () |
Checks if the server is configured for multi-threaded operation. More... | |
PeerConfigPtr | getFailoverPeerConfig () const |
Returns configuration of the partner which takes part in failover. More... | |
HAMode | getHAMode () const |
Returns mode of operation. More... | |
uint32_t | getHeartbeatDelay () const |
Returns heartbeat delay in milliseconds. More... | |
uint32_t | getHttpClientThreads () |
Fetches the number of threads the HTTP client should use. More... | |
bool | getHttpDedicatedListener () |
Checks if the server is configured to use its own HTTP listener. More... | |
uint32_t | getHttpListenerThreads () |
Fetches the number of threads the HTTP listener should use. More... | |
util::Optional< std::string > | getKeyFile () const |
Returns global key-file. More... | |
uint32_t | getMaxAckDelay () const |
Returns maximum time for a client trying to communicate with DHCP server to complete the transaction. More... | |
uint32_t | getMaxResponseDelay () const |
Returns max response delay. More... | |
uint32_t | getMaxUnackedClients () const |
Returns maximum number of clients which may fail to communicate with the DHCP server before entering partner down state. More... | |
PeerConfigMap | getOtherServersConfig () const |
Returns configuration of other servers. More... | |
PeerConfigPtr | getPeerConfig (const std::string &name) const |
Returns configuration of the specified server. More... | |
StateMachineConfigPtr | getStateMachineConfig () const |
Returns state machine configuration. More... | |
uint32_t | getSyncPageLimit () const |
Returns maximum number of leases per page to be fetched during database synchronization. More... | |
uint32_t | getSyncTimeout () const |
Returns timeout for lease database synchronization. More... | |
PeerConfigPtr | getThisServerConfig () const |
Returns configuration of this server. More... | |
std::string | getThisServerName () const |
Returns name of this server. More... | |
util::Optional< std::string > | getTrustAnchor () const |
Returns global trust-anchor. More... | |
PeerConfigPtr | selectNextPeerConfig (const std::string &name) |
Creates and returns pointer to the new peer's configuration. More... | |
void | setCertFile (const util::Optional< std::string > &cert) |
Sets global cert-file. More... | |
void | setDelayedUpdatesLimit (const uint32_t delayed_updates_limit) |
Sets new limit for the number of lease updates to be held unsent in the communication-recovery state. More... | |
void | setEnableMultiThreading (bool enable_multi_threading) |
Sets whether or not server is configured for multi-threaded operation. More... | |
void | setHAMode (const std::string &ha_mode) |
Sets new mode of operation. More... | |
void | setHeartbeatDelay (const uint32_t heartbeat_delay) |
Sets new heartbeat delay in milliseconds. More... | |
void | setHttpClientThreads (uint32_t http_client_threads) |
Sets the number of threads the HTTP client should use. More... | |
void | setHttpDedicatedListener (bool http_dedicated_listener) |
Sets whether or not the server is configured to use its own HTTP listener. More... | |
void | setHttpListenerThreads (uint32_t http_listener_threads) |
Sets the number of threads the HTTP listener should use. More... | |
void | setKeyFile (const util::Optional< std::string > &key) |
Sets global key-file. More... | |
void | setMaxAckDelay (const uint32_t max_ack_delay) |
Sets maximum time for a client trying to communicate with DHCP server to completed the transaction. More... | |
void | setMaxResponseDelay (const uint32_t max_response_delay) |
Sets new max response delay. More... | |
void | setMaxUnackedClients (const uint32_t max_unacked_clients) |
Set maximum number of clients which may fail to communicate with the DHCP server before entering partner down state. More... | |
void | setSendLeaseUpdates (const bool send_lease_updates) |
Sets boolean flag indicating whether lease updates should be sent to the partner. More... | |
void | setSyncLeases (const bool sync_leases) |
Sets boolean flag indicating whether the active servers should synchronize their lease databases upon startup. More... | |
void | setSyncPageLimit (const uint32_t sync_page_limit) |
Sets new page limit size for leases fetched from the partner during database synchronization. More... | |
void | setSyncTimeout (const uint32_t sync_timeout) |
Sets new lease database syncing timeout in milliseconds. More... | |
void | setThisServerName (const std::string &this_server_name) |
Sets name of this server. More... | |
void | setTrustAnchor (const util::Optional< std::string > &ca) |
Sets global trust-anchor. More... | |
void | setWaitBackupAck (const bool wait_backup_ack) |
Configures the server to wait/not wait for the lease update acknowledgments from the backup servers. More... | |
void | validate () |
Validates configuration. More... | |
Static Public Member Functions | |
static std::string | HAModeToString (const HAMode &ha_mode) |
Returns HA mode name. More... | |
static HAMode | stringToHAMode (const std::string &ha_mode) |
Decodes HA mode provided as string. More... | |
Public Attributes | |
util::Optional< std::string > | cert_file_ |
Certificate file. More... | |
uint32_t | delayed_updates_limit_ |
Maximum number of lease updates held for later send in communication-recovery. More... | |
bool | enable_multi_threading_ |
Enable multi-threading. More... | |
HAMode | ha_mode_ |
Mode of operation. More... | |
uint32_t | heartbeat_delay_ |
Heartbeat delay in milliseconds. More... | |
uint32_t | http_client_threads_ |
Number of HTTP client threads. More... | |
bool | http_dedicated_listener_ |
Enable use of own HTTP listener. More... | |
uint32_t | http_listener_threads_ |
Number of HTTP listener threads. More... | |
util::Optional< std::string > | key_file_ |
Private key file. More... | |
uint32_t | max_ack_delay_ |
Maximum DHCP message ack delay. More... | |
uint32_t | max_response_delay_ |
Max delay in response to heartbeats. More... | |
uint32_t | max_unacked_clients_ |
Maximum number of unacked clients. More... | |
PeerConfigMap | peers_ |
Map of peers' configurations. More... | |
bool | send_lease_updates_ |
Send lease updates to partner? More... | |
StateMachineConfigPtr | state_machine_ |
State machine configuration. More... | |
bool | sync_leases_ |
Synchronize databases on startup? More... | |
uint32_t | sync_page_limit_ |
Page size limit while synchronizing leases. More... | |
uint32_t | sync_timeout_ |
Timeout for syncing lease database (ms) More... | |
std::string | this_server_name_ |
This server name. More... | |
util::Optional< std::string > | trust_anchor_ |
Trust anchor. More... | |
bool | wait_backup_ack_ |
Wait for lease update ack from backup? More... | |
Storage for High Availability configuration.
Definition at line 33 of file ha_config.h.
typedef std::map<std::string, PeerConfigPtr> isc::ha::HAConfig::PeerConfigMap |
Map of the servers' configurations.
Definition at line 232 of file ha_config.h.
typedef boost::shared_ptr<PeerConfig> isc::ha::HAConfig::PeerConfigPtr |
Pointer to the server's configuration.
Definition at line 229 of file ha_config.h.
typedef boost::shared_ptr<StateConfig> isc::ha::HAConfig::StateConfigPtr |
Pointer to the state configuration.
Definition at line 280 of file ha_config.h.
typedef boost::shared_ptr<StateMachineConfig> isc::ha::HAConfig::StateMachineConfigPtr |
Pointer to a state machine configuration.
Definition at line 312 of file ha_config.h.
Mode of operation.
Currently supported modes are:
Enumerator | |
---|---|
LOAD_BALANCING | |
HOT_STANDBY | |
PASSIVE_BACKUP |
Definition at line 42 of file ha_config.h.
isc::ha::HAConfig::HAConfig | ( | ) |
Constructor.
Definition at line 162 of file ha_config.cc.
|
inline |
Convenience function checking if communication recovery is allowed.
Communication recovery is only allowed in load-balancing configurations. It is enabled by setting delayed-updates-limit to a value greater than 0.
Definition at line 475 of file ha_config.h.
References delayed_updates_limit_.
|
inline |
Returns boolean flag indicating whether lease updates should be sent to the partner.
Definition at line 370 of file ha_config.h.
References send_lease_updates_.
|
inline |
Returns boolean flag indicating whether the active servers should synchronize their lease databases upon startup.
Definition at line 389 of file ha_config.h.
References sync_leases_.
|
inline |
Checks if the server is configured to wait for the acknowledgments to the lease updates from the backup server or not.
Definition at line 568 of file ha_config.h.
References wait_backup_ack_.
|
inline |
Returns configurations of all servers.
Definition at line 707 of file ha_config.h.
References peers_.
|
inline |
|
inline |
Returns the maximum number of lease updates which can be held unsent in the communication-recovery state.
If the server is in the communication-recovery state it is unable to send lease updates to the partner. Instead it keeps lease updates, hoping to send them when the communication is resumed. This value designates a limit of how many such updates can be held. If this number is exceeded the server continues to respond to the clients but will have to go through regular lease database synchronization when the communication is resumed.
Definition at line 448 of file ha_config.h.
References delayed_updates_limit_.
|
inline |
Checks if the server is configured for multi-threaded operation.
Definition at line 575 of file ha_config.h.
References enable_multi_threading_.
HAConfig::PeerConfigPtr isc::ha::HAConfig::getFailoverPeerConfig | ( | ) | const |
Returns configuration of the partner which takes part in failover.
The server for which the configuration is returned is a "primary", "secondary" or "standby". This method is typically used to locate the configuration of the server to which heartbeat command is to be sent.
InvalidOperation | if there is no suitable configuration found. |
Definition at line 249 of file ha_config.cc.
References isc::ha::HAConfig::PeerConfig::BACKUP, getOtherServersConfig(), getThisServerName(), and isc_throw.
|
inline |
|
inline |
Returns heartbeat delay in milliseconds.
This value indicates the delay in sending a heartbeat command after last heartbeat or some other command to the partner. A value of zero disables the heartbeat.
Definition at line 486 of file ha_config.h.
References heartbeat_delay_.
|
inline |
Fetches the number of threads the HTTP client should use.
Definition at line 624 of file ha_config.h.
References http_client_threads_.
|
inline |
Checks if the server is configured to use its own HTTP listener.
When this is true, the server should instantiate an HTTP listener instance which listens on this server's URL. If false, this server will rely on a kea-control-agent.
Definition at line 594 of file ha_config.h.
References http_dedicated_listener_.
|
inline |
Fetches the number of threads the HTTP listener should use.
Definition at line 610 of file ha_config.h.
References http_listener_threads_.
|
inline |
|
inline |
Returns maximum time for a client trying to communicate with DHCP server to complete the transaction.
Definition at line 525 of file ha_config.h.
References max_ack_delay_.
|
inline |
Returns max response delay.
Max response delay is the maximum time that the server is waiting for its partner to respond to the heartbeats (and lease updates) before it assumes the communications interrupted state.
Definition at line 506 of file ha_config.h.
References max_response_delay_.
|
inline |
Returns maximum number of clients which may fail to communicate with the DHCP server before entering partner down state.
Definition at line 541 of file ha_config.h.
References max_unacked_clients_.
HAConfig::PeerConfigMap isc::ha::HAConfig::getOtherServersConfig | ( | ) | const |
Returns configuration of other servers.
Returns a map of pointers to the configuration of all servers except this.
Definition at line 267 of file ha_config.cc.
References isc::data::copy(), getThisServerName(), and peers_.
Referenced by getFailoverPeerConfig().
HAConfig::PeerConfigPtr isc::ha::HAConfig::getPeerConfig | ( | const std::string & | name | ) | const |
Returns configuration of the specified server.
name | Server name. |
InvalidOperation | if there is no suitable configuration found. |
Definition at line 239 of file ha_config.cc.
References isc_throw, and peers_.
Referenced by getThisServerConfig().
|
inline |
Returns state machine configuration.
Definition at line 714 of file ha_config.h.
References state_machine_.
|
inline |
Returns maximum number of leases per page to be fetched during database synchronization.
Definition at line 424 of file ha_config.h.
References sync_page_limit_.
|
inline |
Returns timeout for lease database synchronization.
Definition at line 409 of file ha_config.h.
References sync_timeout_.
HAConfig::PeerConfigPtr isc::ha::HAConfig::getThisServerConfig | ( | ) | const |
Returns configuration of this server.
Definition at line 262 of file ha_config.cc.
References getPeerConfig(), and getThisServerName().
|
inline |
Returns name of this server.
Definition at line 330 of file ha_config.h.
References this_server_name_.
Referenced by getFailoverPeerConfig(), getOtherServersConfig(), getThisServerConfig(), and validate().
|
inline |
|
static |
Returns HA mode name.
ha_mode | HA mode which name should be returned. |
Definition at line 224 of file ha_config.cc.
References HOT_STANDBY, LOAD_BALANCING, and PASSIVE_BACKUP.
Referenced by isc::ha::HAImpl::commandProcessed(), and isc::ha::HAService::HAService().
HAConfig::PeerConfigPtr isc::ha::HAConfig::selectNextPeerConfig | ( | const std::string & | name | ) |
Creates and returns pointer to the new peer's configuration.
This method is called during peers configuration parsing, when the parser starts reading configuration of the next peer on the list. It will store parsed values into this object.
name | Name of the server for which new configuration should be created. |
BadValue | if there is already a configuration for the given server name. |
Definition at line 174 of file ha_config.cc.
|
inline |
Sets global cert-file.
cert | Certificate file name. |
Definition at line 655 of file ha_config.h.
References cert_file_.
|
inline |
Sets new limit for the number of lease updates to be held unsent in the communication-recovery state.
If the server is in the communication-recovery state it is unable to send lease updates to the partner. Instead it keeps lease updates, hoping to send them when the communication is resumed. This value designates a limit of how many such updates can be held. If this number is exceeded the server continues to respond to the clients but will have to go through regular lease database synchronization when the communication is resumed.
delayed_updates_limit | new limit. |
Definition at line 464 of file ha_config.h.
References delayed_updates_limit_.
|
inline |
Sets whether or not server is configured for multi-threaded operation.
enable_multi_threading | boolean flag that enables multi-threaded operation when true. |
Definition at line 583 of file ha_config.h.
References enable_multi_threading_.
void isc::ha::HAConfig::setHAMode | ( | const std::string & | ha_mode | ) |
Sets new mode of operation.
The following modes of operation are supported:
ha_mode | High Availability mode operation in textual form. |
BadValue | if non-supported mode of operation has been specified. |
Definition at line 204 of file ha_config.cc.
References ha_mode_, and stringToHAMode().
|
inline |
Sets new heartbeat delay in milliseconds.
This value indicates the delay in sending a heartbeat command after last heartbeat or some other command to the partner. A value of zero disables the heartbeat.
heartbeat_delay | new heartbeat delay value. |
Definition at line 497 of file ha_config.h.
References heartbeat_delay_.
|
inline |
Sets the number of threads the HTTP client should use.
http_client_threads | number of threads the client should use. |
Definition at line 631 of file ha_config.h.
References http_client_threads_.
|
inline |
Sets whether or not the server is configured to use its own HTTP listener.
http_dedicated_listener | flag that enables the use of a dedicated listener when true. |
Definition at line 603 of file ha_config.h.
References http_dedicated_listener_.
|
inline |
Sets the number of threads the HTTP listener should use.
http_listener_threads | number of threads the listener should use. |
Definition at line 617 of file ha_config.h.
References http_listener_threads_.
|
inline |
Sets global key-file.
key | Private key file name. |
Definition at line 667 of file ha_config.h.
References key_file_.
|
inline |
Sets maximum time for a client trying to communicate with DHCP server to completed the transaction.
max_ack_delay | maximum time in milliseconds. |
Definition at line 533 of file ha_config.h.
References max_ack_delay_.
|
inline |
Sets new max response delay.
Max response delay is the maximum time that the server is waiting for its partner to respond to the heartbeats (and lease updates) before it assumes the communications interrupted state.
max_response_delay |
Definition at line 517 of file ha_config.h.
References max_response_delay_.
|
inline |
Set maximum number of clients which may fail to communicate with the DHCP server before entering partner down state.
max_unacked_clients | maximum number of clients. |
Definition at line 549 of file ha_config.h.
References max_unacked_clients_.
|
inline |
Sets boolean flag indicating whether lease updates should be sent to the partner.
Disabling lease updates is useful in cases when lease database replication is enabled, e.g. MySQL database replication. The database itself takes care of updating the backup database with new data. Sending lease updates is enabled by default.
send_lease_updates | new value for the flag. |
Definition at line 383 of file ha_config.h.
References send_lease_updates_.
|
inline |
Sets boolean flag indicating whether the active servers should synchronize their lease databases upon startup.
Disabling lease database synchronization is useful in cases when lease database replication is enabled. See the description of the setSendLeaseUpdates
. Lease database synchronization is enabled by default on active HA servers.
sync_leases | new value for the flag. |
Definition at line 402 of file ha_config.h.
References sync_leases_.
|
inline |
Sets new page limit size for leases fetched from the partner during database synchronization.
sync_page_limit | New page limit value. |
Definition at line 432 of file ha_config.h.
References sync_page_limit_.
|
inline |
Sets new lease database syncing timeout in milliseconds.
sync_timeout | new timeout for lease database synchronization. |
Definition at line 416 of file ha_config.h.
References sync_timeout_.
void isc::ha::HAConfig::setThisServerName | ( | const std::string & | this_server_name | ) |
Sets name of this server.
this_server_name | This server name. |
BadValue | If the provided server name is empty. |
Definition at line 192 of file ha_config.cc.
References isc_throw, this_server_name_, and isc::util::str::trim().
|
inline |
Sets global trust-anchor.
ca | Trust anchor aka Certificate Authority. |
Definition at line 643 of file ha_config.h.
References trust_anchor_.
|
inline |
Configures the server to wait/not wait for the lease update acknowledgments from the backup servers.
wait_backup_ack | indicates that the server should wait for the lease update acknowledgments from the backup servers (if true) or that it should not (if false). |
Definition at line 559 of file ha_config.h.
References wait_backup_ack_.
|
static |
Decodes HA mode provided as string.
ha_mode | HA mode as string. |
BadValue | if specified HA mode name is unsupported. |
Definition at line 209 of file ha_config.cc.
References HOT_STANDBY, isc_throw, LOAD_BALANCING, and PASSIVE_BACKUP.
Referenced by setHAMode().
void isc::ha::HAConfig::validate | ( | ) |
Validates configuration.
In addition to sanity checking the configuration, it will check HA+MT configuration against Core multi-threading configuration add adjust HA+MT values as follows:
As a side effect it fills the TLS context of peers when TLS is enabled.
HAConfigValidationError | if configuration is invalid. |
Definition at line 274 of file ha_config.cc.
References cert_file_, isc::asiolink::CLIENT, delayed_updates_limit_, enable_multi_threading_, isc::util::Optional< T >::get(), getThisServerName(), isc::ha::HA_CONFIG_DHCP_MT_DISABLED, isc::ha::HA_CONFIG_SYSTEM_MT_UNSUPPORTED, isc::ha::ha_logger, ha_mode_, HOT_STANDBY, http_client_threads_, http_listener_threads_, isc_throw, key_file_, LOAD_BALANCING, LOG_INFO, PASSIVE_BACKUP, peers_, isc::ha::HAConfig::PeerConfig::PRIMARY, isc::ha::HAConfig::PeerConfig::SECONDARY, isc::ha::HAConfig::PeerConfig::STANDBY, trust_anchor_, isc::util::Optional< T >::unspecified(), wait_backup_ack_, and isc::Exception::what().
util::Optional<std::string> isc::ha::HAConfig::cert_file_ |
Certificate file.
Definition at line 753 of file ha_config.h.
Referenced by getCertFile(), setCertFile(), and validate().
uint32_t isc::ha::HAConfig::delayed_updates_limit_ |
Maximum number of lease updates held for later send in communication-recovery.
Definition at line 741 of file ha_config.h.
Referenced by amAllowingCommRecovery(), getDelayedUpdatesLimit(), setDelayedUpdatesLimit(), and validate().
bool isc::ha::HAConfig::enable_multi_threading_ |
Enable multi-threading.
Definition at line 748 of file ha_config.h.
Referenced by getEnableMultiThreading(), setEnableMultiThreading(), and validate().
HAMode isc::ha::HAConfig::ha_mode_ |
Mode of operation.
Definition at line 735 of file ha_config.h.
Referenced by getHAMode(), setHAMode(), and validate().
uint32_t isc::ha::HAConfig::heartbeat_delay_ |
Heartbeat delay in milliseconds.
Definition at line 743 of file ha_config.h.
Referenced by getHeartbeatDelay(), and setHeartbeatDelay().
uint32_t isc::ha::HAConfig::http_client_threads_ |
Number of HTTP client threads.
Definition at line 751 of file ha_config.h.
Referenced by getHttpClientThreads(), setHttpClientThreads(), and validate().
bool isc::ha::HAConfig::http_dedicated_listener_ |
Enable use of own HTTP listener.
Definition at line 749 of file ha_config.h.
Referenced by getHttpDedicatedListener(), and setHttpDedicatedListener().
uint32_t isc::ha::HAConfig::http_listener_threads_ |
Number of HTTP listener threads.
Definition at line 750 of file ha_config.h.
Referenced by getHttpListenerThreads(), setHttpListenerThreads(), and validate().
util::Optional<std::string> isc::ha::HAConfig::key_file_ |
Private key file.
Definition at line 754 of file ha_config.h.
Referenced by getKeyFile(), setKeyFile(), and validate().
uint32_t isc::ha::HAConfig::max_ack_delay_ |
Maximum DHCP message ack delay.
Definition at line 745 of file ha_config.h.
Referenced by getMaxAckDelay(), and setMaxAckDelay().
uint32_t isc::ha::HAConfig::max_response_delay_ |
Max delay in response to heartbeats.
Definition at line 744 of file ha_config.h.
Referenced by getMaxResponseDelay(), and setMaxResponseDelay().
uint32_t isc::ha::HAConfig::max_unacked_clients_ |
Maximum number of unacked clients.
Definition at line 746 of file ha_config.h.
Referenced by getMaxUnackedClients(), and setMaxUnackedClients().
PeerConfigMap isc::ha::HAConfig::peers_ |
Map of peers' configurations.
Definition at line 755 of file ha_config.h.
Referenced by getAllServersConfig(), getOtherServersConfig(), getPeerConfig(), selectNextPeerConfig(), and validate().
bool isc::ha::HAConfig::send_lease_updates_ |
Send lease updates to partner?
Definition at line 736 of file ha_config.h.
Referenced by amSendingLeaseUpdates(), and setSendLeaseUpdates().
StateMachineConfigPtr isc::ha::HAConfig::state_machine_ |
State machine configuration.
Definition at line 756 of file ha_config.h.
Referenced by getStateMachineConfig().
bool isc::ha::HAConfig::sync_leases_ |
Synchronize databases on startup?
Definition at line 737 of file ha_config.h.
Referenced by amSyncingLeases(), and setSyncLeases().
uint32_t isc::ha::HAConfig::sync_page_limit_ |
Page size limit while synchronizing leases.
Definition at line 739 of file ha_config.h.
Referenced by getSyncPageLimit(), and setSyncPageLimit().
uint32_t isc::ha::HAConfig::sync_timeout_ |
Timeout for syncing lease database (ms)
Definition at line 738 of file ha_config.h.
Referenced by getSyncTimeout(), and setSyncTimeout().
std::string isc::ha::HAConfig::this_server_name_ |
This server name.
Definition at line 734 of file ha_config.h.
Referenced by getThisServerName(), and setThisServerName().
util::Optional<std::string> isc::ha::HAConfig::trust_anchor_ |
Trust anchor.
Definition at line 752 of file ha_config.h.
Referenced by getTrustAnchor(), setTrustAnchor(), and validate().
bool isc::ha::HAConfig::wait_backup_ack_ |
Wait for lease update ack from backup?
Definition at line 747 of file ha_config.h.
Referenced by amWaitingBackupAck(), setWaitBackupAck(), and validate().