Squashed commit of the following:
commit
8a7d79a6f743f696efe67be5b889cd295108c0a9
Author: Katura Harvey <katharve@cisco.com>
Date: Wed Jul 14 16:58:50 2021 -0400
http2_inspect: change xor to or in assert that was failing due to uninitialized variable
(header_scan_result == StreamSplitter::SEARCH)) or
((!session_data->is_processing_partial_header() and
(header_scan_result == StreamSplitter::FLUSH))));
- assert(session_data->is_processing_partial_header() ^
+ assert(session_data->is_processing_partial_header() or
((int64_t)flush_offset == http1_header.length()));
UNUSED(header_scan_result);
}