Browse Source

fix number of ICE components for tricke-ICE no-components case

pull/107/head
Richard Fuchs 11 years ago
parent
commit
83a40824f4
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      daemon/ice.c

+ 9
- 1
daemon/ice.c View File

@ -432,7 +432,15 @@ pair:
}
}
ag->active_components = comps;
if (comps)
ag->active_components = comps;
if (!ag->active_components) {
/* determine components for tricke-ice case */
comps = 2;
if (!components[1])
comps = 1;
ag->active_components = comps;
}
/* if we're here, we can start our ICE checks */
if (recalc)


Loading…
Cancel
Save