config: adjust the number of maz entries per bucket for IP reassembly

This commit is contained in:
luwenpeng
2024-07-30 19:17:29 +08:00
parent 18153550d9
commit 48202b4d0a
5 changed files with 12 additions and 12 deletions

View File

@@ -9,7 +9,7 @@ struct ip_reassembly_options
{
uint8_t enable;
uint32_t timeout; // range: [1, 60000]
uint32_t bucket_entries; // range: [1, 256] (must be power of 2)
uint32_t bucket_entries; // range: [1, 4294967295] (must be power of 2)
uint32_t bucket_num; // range: [1, 4294967295]
};