![]() |
Kea 3.1.1
|
#include <database/audit_entry.h>
#include <dhcp/classify.h>
#include <dhcp/pkt_template.h>
#include <dhcpsrv/cfgmgr.h>
#include <dhcpsrv/lease.h>
#include <dhcpsrv/lease_mgr_factory.h>
#include <dhcpsrv/srv_config.h>
#include <dhcpsrv/subnet.h>
#include <dhcpsrv/subnet_id.h>
#include <hooks/hooks.h>
#include <limits/configuration.h>
#include <limits/limits_logger.h>
#include <util/dhcp_space.h>
#include <util/multi_threading_mgr.h>
#include <boost/circular_buffer.hpp>
#include <chrono>
#include <unordered_map>
#include <vector>
Go to the source code of this file.
Classes | |
struct | isc::limits::LimitManager |
Provides the capability to limit the number of leases or the response rate. More... | |
struct | isc::limits::ProtectedTimeSeries |
Holds a number of time points, used in limiting by a single criterion, and a mutex to protect concurrent reads and writes. More... | |
Namespaces | |
namespace | isc |
Defines the logger used by the top-level component of kea-lfc. | |
namespace | isc::limits |
Typedefs | |
typedef std::shared_ptr< ProtectedTimeSeries > | isc::limits::ProtectedTimeSeriesPtr |
Defines a smart pointer to a ProtectedTimeSeries. | |
using | isc::limits::TimePoint = std::chrono::time_point<std::chrono::system_clock> |
a point in time | |
using | isc::limits::TimeSeries = boost::circular_buffer<TimePoint> |
Holds a number of time points, used in limiting by a single criterion. | |