Browse Source

additional debug for double lookup case

git.mgm/mediaproxy-ng/origin/mr3.2
Richard Fuchs 12 years ago
parent
commit
b14908e59e
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      daemon/call.c

+ 4
- 1
daemon/call.c View File

@ -1666,9 +1666,12 @@ got_cs:
the appropriate details. if no matching stream was found, results are
undefined. */
DBG("double lookup");
if (p == matched_relay->up)
if (p == matched_relay->up) {
DBG("forward direction");
goto skip;
}
if (p2 == matched_relay->up) {
DBG("backward direction");
ret = -1;
goto skip;
}


Loading…
Cancel
Save