diff options
author | Marcin Siodelski <marcin@isc.org> | 2023-11-28 13:41:46 +0100 |
---|---|---|
committer | Marcin Siodelski <marcin@isc.org> | 2023-11-29 20:58:56 +0100 |
commit | e9ea1a1b6afdd0aa0ebf302a1585ce9eb8b15d38 (patch) | |
tree | baccd15ce157949b6bf1dd20fa4ba030bc6e1994 /src/lib/dhcpsrv | |
parent | [#3106] Fixed some doxygen warnings (diff) | |
download | kea-e9ea1a1b6afdd0aa0ebf302a1585ce9eb8b15d38.tar.xz kea-e9ea1a1b6afdd0aa0ebf302a1585ce9eb8b15d38.zip |
[#3106] Network state constants further apart
Diffstat (limited to 'src/lib/dhcpsrv')
-rw-r--r-- | src/lib/dhcpsrv/network_state.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dhcpsrv/network_state.h b/src/lib/dhcpsrv/network_state.h index b3d203ff08..4a130692f9 100644 --- a/src/lib/dhcpsrv/network_state.h +++ b/src/lib/dhcpsrv/network_state.h @@ -100,11 +100,11 @@ public: /// /// Specify HA service-specific origins by adding a unique remote service /// identifier to this constant. - static const unsigned int HA_REMOTE_COMMAND = 1100; + static const unsigned int HA_REMOTE_COMMAND = 2000; /// @brief The network state is being altered by the DB connection /// recovery mechanics. - static const unsigned int DB_CONNECTION = 2000; + static const unsigned int DB_CONNECTION = 3000; /// @brief Type of the container holding collection of subnet identifiers. typedef std::set<SubnetID> Subnets; |