Commit feed9c21 authored by Olivier Crête's avatar Olivier Crête

Don't try new stun demux in gtalk mode

parent 0f063ce1
...@@ -100,7 +100,7 @@ stun_conncheck_reply (uint8_t *restrict buf, size_t *restrict plen, ...@@ -100,7 +100,7 @@ stun_conncheck_reply (uint8_t *restrict buf, size_t *restrict plen,
return EINVAL; return EINVAL;
} }
if (!stun_demux (msg)) if (compat != 1 && !stun_demux (msg))
{ {
DBG (" Incorrectly multiplexed STUN message ignored.\n"); DBG (" Incorrectly multiplexed STUN message ignored.\n");
return EINVAL; return EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment