Skip to content

Commit

Permalink
more tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
willamowius committed Feb 27, 2024
1 parent 7672137 commit 76331ab
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 @@ -16368,7 +16368,7 @@ bool H245ProxyHandler::OnLogicalChannelParameters(H245_H2250LogicalChannelParame
// done by SetAddress() of the H245(Proxy)handler, created with the masquerading IP in SetRemote()
// we should use the un-rewritten, really signaled IP here
PIPSocket::Address signaledRTCPSrcIP = IsCaller() ? m_callerSignaledRTCPSrcIP : m_calledSignaledRTCPSrcIP;
PTRACE(7, "JW RTCP addr signaled=" << AsString(signaledRTCPSrcIP));
PTRACE(7, "JW RTCP addr sourceIP=" << AsString(sourceIP) << " signaledRTCPSrcIP=" << AsString(signaledRTCPSrcIP));

lc->SetMediaControlChannelSource(*addr, sourceIP, isUnidirectional);
*addr << GetMasqAddr() << (lc->GetPort() + 1); // define our local RTCP port to be next to RTP port as recommended in RFC 3550
Expand Down Expand Up @@ -16401,7 +16401,7 @@ bool H245ProxyHandler::OnLogicalChannelParameters(H245_H2250LogicalChannelParame
zeroIP = false;
}
if (IsInNetworks(sourceIP, m_keepSignaledIPsFrom)) {
PTRACE(7, "JW RTP don't zero due to m_keepSignaledIPsFrom");
PTRACE(7, "JW RTP don't zero due to m_keepSignaledIPsFrom sourceIP=" << AsString(sourceIP));
zeroIP = false;
}
if (zeroIP) {
Expand Down

0 comments on commit 76331ab

Please sign in to comment.