You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// doing port detection and forward source is already set (probably by port detection) and set to same as forward dest -> swap the directions (OR skip the setting ?)
13843
13843
H245_UnicastAddress fSrc = SocketToH245UnicastAddr(fSrcIP, fSrcPort); // for easy comparison
13844
-
if (m_ignoreSignaledIPs && fSrc == *dstAddr) {
13844
+
if (m_ignoreSignaledIPs && dstAddr && fSrc == *dstAddr) {
13845
13845
PTRACE(7, "JW RTP swap directions before SetForwardDestination to avoid loop");
// doing port detection and reverse source is already set (probably by port detection) and set to same as reverse dest -> swap the directions (OR skip the setting ?)
13908
13908
H245_UnicastAddress rSrc = SocketToH245UnicastAddr(rSrcIP, rSrcPort); // for easy comparison
13909
-
if (m_ignoreSignaledIPs && rSrc == *dstAddr) {
13909
+
if (m_ignoreSignaledIPs && dstAddr && rSrc == *dstAddr) {
13910
13910
PTRACE(7, "JW RTP swap directions before SetReverseDestination to avoid loop");
0 commit comments