-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Send points to backend thru post instead of get #4211
Description
Hi, I'm using OSRM 5.3.0 and doing some modifications because the amount of points sent thru uri are way too long and the connection is dropped, I've tried to implement this by myself but failed.
I changed the connection.cpp file to substring incomming_data_buffer, but seems that async_read_some trimms the content of the call.
can anybody tell me how do you implemented this? any lead?
I've also tried with async_recieve -> the connection isnt dropped but the received content is also trimmed
I've changed connection.hpp to change from 8k to 2m the size of incomming_data_buffer but still trimm the content receieved.
Also tried to use boost::asio::async_read but something is missing, the connection doesnt finishes besides transfered all the content (checked using sniffer)