Commit 455f2734 authored by Youness Alaoui's avatar Youness Alaoui

yeayyy, stupid WLM2009 seems to generate wrong fingerprints from time to time...

yeayyy, stupid WLM2009 seems to generate wrong fingerprints from time to time (not always) so we just skip fingerprint checks...
parent 04181fb5
...@@ -152,6 +152,7 @@ StunValidationStatus stun_agent_validate (StunAgent *agent, StunMessage *msg, ...@@ -152,6 +152,7 @@ StunValidationStatus stun_agent_validate (StunAgent *agent, StunMessage *msg,
if (fpr != crc32) { if (fpr != crc32) {
stun_debug ("STUN demux error: bad fingerprint: 0x%08x," stun_debug ("STUN demux error: bad fingerprint: 0x%08x,"
" expected: 0x%08x!\n", fpr, crc32); " expected: 0x%08x!\n", fpr, crc32);
if (agent->compatibility != STUN_COMPATIBILITY_WLM2009)
return STUN_VALIDATION_BAD_REQUEST; return STUN_VALIDATION_BAD_REQUEST;
} }
......
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