aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2020-09-23 15:06:53 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2020-09-23 15:06:53 +0200
commite9bb5ee712b90d3b6892fa23aed8454649a23eea (patch)
tree3e2ab6059c9ad25f09e55df9923aec32025fcd0b
parent927f032112ae3d5ed0c405dcaeeeeb2c84cfede1 (diff)
downloaddabmux-e9bb5ee712b90d3b6892fa23aed8454649a23eea.tar.gz
dabmux-e9bb5ee712b90d3b6892fa23aed8454649a23eea.tar.bz2
dabmux-e9bb5ee712b90d3b6892fa23aed8454649a23eea.zip
Pull in common 0c5bf36: spread UDP packets over time to avoid bursts
-rw-r--r--lib/edioutput/Transport.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/edioutput/Transport.cpp b/lib/edioutput/Transport.cpp
index d8627fd..fa7588a 100644
--- a/lib/edioutput/Transport.cpp
+++ b/lib/edioutput/Transport.cpp
@@ -26,6 +26,7 @@
*/
#include "Transport.h"
#include <iterator>
+#include <cmath>
using namespace std;
@@ -131,6 +132,12 @@ void Sender::write(const TagPacket& tagpacket)
edi_fragments.size());
}
+ /* Spread out the transmission of all fragments over 75% of the 24ms AF packet duration
+ * to reduce the risk of losing fragments because of congestion.
+ *
+ * 75% was chosen so that other outputs still have time to do their thing. */
+ const auto inter_fragment_wait_time = std::chrono::microseconds(llrint(0.75 * 24000.0 / edi_fragments.size()));
+
// Send over ethernet
for (auto& edi_frag : edi_fragments) {
if (m_conf.dump) {
@@ -155,6 +162,8 @@ void Sender::write(const TagPacket& tagpacket)
throw logic_error("EDI destination not implemented");
}
}
+
+ std::this_thread::sleep_for(inter_fragment_wait_time);
}
}
else {