We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 319e4eb commit c100a5dCopy full SHA for c100a5d
storage/cache.cpp
@@ -533,7 +533,10 @@ int NHTFlowCache::put_pkt(Packet& packet)
533
export_expired(packet.ts);
534
return 0;
535
}
536
-
+ const size_t index = flow_id.index();
537
+ if (!std::holds_alternative<std::pair<size_t, bool>>(flow_id)) {
538
+ std::cout << std::endl;
539
+ }
540
const auto [flow_index, source_to_destination] = std::get<std::pair<size_t, bool>>(flow_id);
541
#ifdef WITH_CTT
542
const bool flow_is_waiting_for_export = !try_to_export_delayed_flow(packet, flow_index) && m_flow_table[flow_index]->is_waiting_for_export;
0 commit comments