Refactor the session manager using session transformation 2D array & Update test case
This commit is contained in:
@@ -306,7 +306,7 @@ static int parse_session_manager_options(toml_table_t *table, struct session_man
|
||||
CONFIG_LOG_ERROR("config file missing session_manager.duplicated_packet_filter_capacity");
|
||||
return -1;
|
||||
}
|
||||
opts->duplicated_packet_filter_capacity = atoll(ptr);
|
||||
opts->duplicated_packet_filter_capacity = atoi(ptr);
|
||||
|
||||
ptr = toml_raw_in(session_manager, "duplicated_packet_filter_timeout");
|
||||
if (ptr == NULL)
|
||||
@@ -314,7 +314,7 @@ static int parse_session_manager_options(toml_table_t *table, struct session_man
|
||||
CONFIG_LOG_ERROR("config file missing session_manager.duplicated_packet_filter_timeout");
|
||||
return -1;
|
||||
}
|
||||
opts->duplicated_packet_filter_timeout = atoll(ptr);
|
||||
opts->duplicated_packet_filter_timeout = atoi(ptr);
|
||||
|
||||
ptr = toml_raw_in(session_manager, "duplicated_packet_filter_error_rate");
|
||||
if (ptr == NULL)
|
||||
|
||||
Reference in New Issue
Block a user