Skip to content

Commit

Permalink
better tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
willamowius committed Sep 17, 2021
1 parent d610546 commit 3b3c990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ProxyChannel.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -12925,7 +12925,7 @@ void H46019Session::HandlePacket(DWORD receivedMultiplexID, const IPAndPortAddre
Send(m_multiplexID_toB, (isRTCP ? m_addrB_RTCP : m_addrB), (isRTCP ? m_osSocketToB_RTCP : m_osSocketToB), data, len, true, NULL);
}
} else {
PTRACE(5, "RTPM\tReceiver not ready");
PTRACE(5, "RTPM\tReceiver not ready (session " << m_session << (isRTCP ? " RTCP" : " RTP") << " from " << AsString(fromAddress) << ")");
}
} else if (receivedMultiplexID == m_multiplexID_fromB) {
if (sideAReady(isRTCP)) {
Expand All @@ -12935,7 +12935,7 @@ void H46019Session::HandlePacket(DWORD receivedMultiplexID, const IPAndPortAddre
Send(m_multiplexID_toA, (isRTCP ? m_addrA_RTCP : m_addrA), (isRTCP ? m_osSocketToA_RTCP : m_osSocketToA), data, len, true, NULL);
}
} else {
PTRACE(5, "RTPM\tReceiver not ready");
PTRACE(5, "RTPM\tReceiver not ready (session " << m_session << (isRTCP ? " RTCP" : " RTP") << " from " << AsString(fromAddress) << ")");
}
}
if (isRTCP && m_EnableRTCPStats) {
Expand Down

0 comments on commit 3b3c990

Please sign in to comment.