Add tcp reassembly test case

This commit is contained in:
luwenpeng
2024-03-25 17:30:48 +08:00
parent 2ad811f68d
commit 5b92d6d8de
9 changed files with 1389 additions and 596 deletions

View File

@@ -67,5 +67,5 @@ int interval_overlap(const interval_t *i1, const interval_t *i2)
int interval_equal(const interval_t *i1, const interval_t *i2)
{
return i1->low == i2->low && i1->high == i2->high;
return i1->low == i2->low && i1->high == i2->high && i1->data == i2->data;
}