Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Kea
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
445
Issues
445
List
Boards
Labels
Service Desk
Milestones
Merge Requests
71
Merge Requests
71
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
Kea
Commits
df3068ba
Commit
df3068ba
authored
May 18, 2018
by
Thomas Markwalder
Browse files
Options
Browse Files
Download
Plain Diff
[master] Corrected missing "override" warnings in cql_lease_mgr.h
Merge branch 'trac5625'
parents
1317d23e
22c6217d
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8848 deletions
+9
-8848
ChangeLog
ChangeLog
+3
-8842
src/lib/dhcpsrv/cql_lease_mgr.h
src/lib/dhcpsrv/cql_lease_mgr.h
+6
-6
No files found.
ChangeLog
View file @
df3068ba
This diff is collapsed.
Click to expand it.
src/lib/dhcpsrv/cql_lease_mgr.h
View file @
df3068ba
...
...
@@ -380,7 +380,7 @@ public:
/// The query object is then returned.
///
/// @return The populated query as a pointer to an LeaseStatsQuery
virtual
LeaseStatsQueryPtr
startLeaseStatsQuery4
();
virtual
LeaseStatsQueryPtr
startLeaseStatsQuery4
()
override
;
/// @brief Creates and runs the IPv4 lease stats query for a single subnet
///
...
...
@@ -390,7 +390,7 @@ public:
///
/// @param subnet_id id of the subnet for which stats are desired
/// @return A populated LeaseStatsQuery
virtual
LeaseStatsQueryPtr
startSubnetLeaseStatsQuery4
(
const
SubnetID
&
subnet_id
);
virtual
LeaseStatsQueryPtr
startSubnetLeaseStatsQuery4
(
const
SubnetID
&
subnet_id
)
override
;
/// @brief Creates and runs the IPv4 lease stats query for a single subnet
///
...
...
@@ -402,7 +402,7 @@ public:
/// @param last_subnet_id last subnet in the range of subnets
/// @return A populated LeaseStatsQuery
virtual
LeaseStatsQueryPtr
startSubnetRangeLeaseStatsQuery4
(
const
SubnetID
&
first_subnet_id
,
const
SubnetID
&
last_subnet_id
);
const
SubnetID
&
last_subnet_id
)
override
;
/// @brief Creates and runs the IPv6 lease stats query
///
/// It creates an instance of a CqlLeaseStatsQuery and then
...
...
@@ -411,7 +411,7 @@ public:
/// The query object is then returned.
///
/// @return The populated query as a pointer to an LeaseStatsQuery
virtual
LeaseStatsQueryPtr
startLeaseStatsQuery6
();
virtual
LeaseStatsQueryPtr
startLeaseStatsQuery6
()
override
;
/// @brief Creates and runs the IPv6 lease stats query for a single subnet
///
...
...
@@ -421,7 +421,7 @@ public:
///
/// @param subnet_id id of the subnet for which stats are desired
/// @return A populated LeaseStatsQuery
virtual
LeaseStatsQueryPtr
startSubnetLeaseStatsQuery6
(
const
SubnetID
&
subnet_id
);
virtual
LeaseStatsQueryPtr
startSubnetLeaseStatsQuery6
(
const
SubnetID
&
subnet_id
)
override
;
/// @brief Creates and runs the IPv6 lease stats query for a single subnet
///
...
...
@@ -433,7 +433,7 @@ public:
/// @param last_subnet_id last subnet in the range of subnets
/// @return A populated LeaseStatsQuery
virtual
LeaseStatsQueryPtr
startSubnetRangeLeaseStatsQuery6
(
const
SubnetID
&
first_subnet_id
,
const
SubnetID
&
last_subnet_id
);
const
SubnetID
&
last_subnet_id
)
override
;
/// @brief Removes specified IPv4 leases.
///
/// This rather dangerous method is able to remove all leases from specified
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment