feature(packet manager): support claim packt and add test case

This commit is contained in:
luwenpeng
2024-09-14 18:38:37 +08:00
parent f559d67b93
commit 721d5d1466
9 changed files with 308 additions and 101 deletions

View File

@@ -233,7 +233,7 @@ void tcp_reassembly_inc_recv_next(struct tcp_reassembly *tcp_reass, uint32_t off
}
tcp_reass->recv_next = uint32_add(tcp_reass->recv_next, offset);
TCP_REASSEMBLY_LOG_DEBUG("tcp_reass %p inc recv_next %u to %lu", tcp_reass, offset, tcp_reass->recv_next);
TCP_REASSEMBLY_LOG_DEBUG("tcp_reass %p inc recv_next %u to %u", tcp_reass, offset, tcp_reass->recv_next);
}
void tcp_reassembly_set_recv_next(struct tcp_reassembly *tcp_reass, uint32_t seq)