detect/tx: minor debug additions and fixes

pull/15398/head
Victor Julien 3 days ago
parent b29226c7ea
commit 367ca7f430

@ -2051,11 +2051,14 @@ static void DetectRunTx(ThreadVars *tv,
const bool have_fw_rules = EngineModeIsFirewall(); const bool have_fw_rules = EngineModeIsFirewall();
SCLogDebug("packet %" PRIu64, PcapPacketCntGet(p)); SCLogDebug("packet %" PRIu64, PcapPacketCntGet(p));
SCLogDebug("total_txs %" PRIu64, total_txs);
while (1) { while (1) {
AppLayerGetTxIterTuple ires = IterFunc(ipproto, alproto, alstate, tx_id_min, total_txs, &state); AppLayerGetTxIterTuple ires = IterFunc(ipproto, alproto, alstate, tx_id_min, total_txs, &state);
if (ires.tx_ptr == NULL) if (ires.tx_ptr == NULL) {
SCLogDebug("%p/%" PRIu64 " no transaction to inspect", ires.tx_ptr, tx_id_min);
break; break;
}
DetectTransaction tx = DetectTransaction tx =
GetDetectTx(ipproto, alproto, ires.tx_id, ires.tx_ptr, tx_end_state, flow_flags); GetDetectTx(ipproto, alproto, ires.tx_id, ires.tx_ptr, tx_end_state, flow_flags);
@ -2070,7 +2073,7 @@ static void DetectRunTx(ThreadVars *tv,
tx_inspected++; tx_inspected++;
const bool last_tx = (total_txs == tx.tx_id + 1); const bool last_tx = (total_txs == tx.tx_id + 1);
SCLogDebug("%p/%" PRIu64 " txd flags %02x", tx.tx_ptr, tx_id_min, tx.tx_data_ptr->flags); SCLogDebug("%p/%" PRIu64 " txd flags %02x", tx.tx_ptr, tx.tx_id, tx.tx_data_ptr->flags);
det_ctx->tx_id = tx.tx_id; det_ctx->tx_id = tx.tx_id;
det_ctx->tx_id_set = true; det_ctx->tx_id_set = true;

Loading…
Cancel
Save