Add a commande line option to osrm-routed for max locations supported in distance table query

This commit is contained in:
Frédéric Rodrigo
2014-11-27 12:09:07 +01:00
committed by Frederic Rodrigo
parent 1d2f06df6d
commit e2605c2838
7 changed files with 30 additions and 16 deletions
+3 -2
View File
@@ -65,7 +65,7 @@ int main(int argc, const char *argv[])
try
{
std::string ip_address;
int ip_port, requested_thread_num;
int ip_port, requested_thread_num, max_locations_distance_table;
bool use_shared_memory = false, trial_run = false;
ServerPaths server_paths;
@@ -76,7 +76,8 @@ int main(int argc, const char *argv[])
ip_port,
requested_thread_num,
use_shared_memory,
trial_run);
trial_run,
max_locations_distance_table);
if (init_result == INIT_FAILED)
{