Skip to content
Snippets Groups Projects
Commit 9e30bfbd authored by Sebastian Hahta's avatar Sebastian Hahta
Browse files

hotfix for out of band data

parent be065152
Branches
No related tags found
No related merge requests found
......@@ -490,8 +490,9 @@ bool Net::begin() {
auto *state = _getFrameState(FrameID(spkt_raw.streamID, spkt_raw.frame_number));
_earlyProcessPacket(&p, ttimeoff, spkt_raw, pkt);
if (!host_) {
if (!host_ && !(spkt_raw.flags & ftl::protocol::kFlagOutOfBand)) {
// not hosted: buffer packets (processed in separate thread Net::_run())
// or out of band which are passed to processing immediately
UNIQUE_LOCK(state->mtx, lk);
state->timestamps.insert(spkt_raw.timestamp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment