Merge in SNORT/snort3 from ~YEFURMAN/snort3:appid_ooo_by_default to master
Squashed commit of the following:
commit
bf9e2b73759c5c43191f78445c1e301bd2a0241e
Author: yefurman <yefurman@cisco.com>
Date: Thu Jan 8 07:43:19 2026 -0500
appid: enable out-of-order inspection by default
}
else if (!(strcasecmp(conf_key, "inspect_ooo_flows")))
{
- if (!(strcasecmp(conf_val, "enabled")))
+ if (!(strcasecmp(conf_val, "disabled")))
{
- odp_ctxt.inspect_ooo_flows = true;
+ odp_ctxt.inspect_ooo_flows = false;
continue;
}
}
bool recheck_for_portservice_appid = false;
bool eve_http_client = true;
bool appid_cpu_profiler = true;
- bool inspect_ooo_flows = false;
+ bool inspect_ooo_flows = true;
uint8_t brute_force_inprocess_threshold = DEFAULT_BRUTE_FORCE_INPROCESS_STATE_THRESHOLD;
uint16_t max_packet_before_service_fail = DEFAULT_MAX_PKTS_BEFORE_SERVICE_FAIL;
uint16_t max_packet_service_fail_ignore_bytes = DEFAULT_MAX_PKT_BEFORE_SERVICE_FAIL_IGNORE_BYTES;