1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-03-29 11:19:52 +01:00

Switched away from contains() as it's availbable only for C++ 20. Closes #983

This commit is contained in:
Pavel Odintsov 2023-06-07 14:39:11 +01:00
parent 4a62cbcaef
commit 8103161125

View File

@ -57,7 +57,8 @@ template <typename TemplateKeyType> class packet_buckets_storage_t {
bool we_have_bucket_for_this_ip(const TemplateKeyType& lookup_ip) {
std::lock_guard<std::mutex> lock_guard(packet_buckets_map_mutex);
return packet_buckets_map.contains(lookup_ip);
// After migration to C++ 20 we can switch it to contains: https://en.cppreference.com/w/cpp/container/map/contains
return packet_buckets_map.count(lookup_ip) > 0;
}
bool remove_packet_capture_for_ip(const TemplateKeyType& lookup_ip) {