When tcp reassembly is turned off, all tcp segments are considered in order

This commit is contained in:
luwenpeng
2024-04-08 12:10:25 +08:00
parent c8beafe081
commit daff1ecbc7
4 changed files with 28 additions and 9 deletions

View File

@@ -46,7 +46,7 @@ struct session_manager_options
double evicted_session_filter_error_rate; // range: [0.0, 1.0]
// TCP reassembly
uint8_t tcp_reassembly_enable; // TODO not support
uint8_t tcp_reassembly_enable;
uint32_t tcp_reassembly_max_timeout; // range: [1, 60000] (ms)
uint32_t tcp_reassembly_max_segments; // range: [2, 32]
};