SimaticResearchActivity / FBAE

Framework for Broadcast Algorithms Evaluation
GNU Affero General Public License v3.0
0 stars 1 forks source link

Asynchronous TCP connections are missing TCP No Delay option #70

Closed simatic closed 1 month ago

simatic commented 5 months ago

When switching from synchronous TCP management to asynchronous TCP management, setting TCP No Delay option was forgotten. See where to put the following lines (extracted from syncrhonous TCP management):

boost::asio::ip::tcp::no_delay option(true);
ptrSock->set_option(option);