Merge in SNORT/snort3 from ~RDEMPSTE/snort3:flow_ip_tracker to master
Squashed commit of the following:
commit
11c222dd8db3a6addba6240b6d4c6769cd3a5ddb
Author: Ron Dempster (rdempste) <rdempste@cisco.com>
Date: Tue Feb 4 07:59:18 2025 -0500
perf_monitor: update flow state value reset
if ( ip_map->insert(&key, nullptr) != HASH_OK )
return nullptr;
value = (FlowStateValue*)ip_map->get_user_data();
- *value = {};
+ static constexpr FlowStateValue fsv_empty_value;
+ *value = fsv_empty_value;
}
return value;