summaryrefslogtreecommitdiff
path: root/pjnath/include
diff options
context:
space:
mode:
Diffstat (limited to 'pjnath/include')
-rw-r--r--pjnath/include/pjnath/stun_msg.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/pjnath/include/pjnath/stun_msg.h b/pjnath/include/pjnath/stun_msg.h
index c88397bc..7c3805ea 100644
--- a/pjnath/include/pjnath/stun_msg.h
+++ b/pjnath/include/pjnath/stun_msg.h
@@ -1158,7 +1158,15 @@ enum pj_stun_decode_options
* When specified, it tells the session NOT to authenticate the
* message.
*/
- PJ_STUN_NO_AUTHENTICATE = 4
+ PJ_STUN_NO_AUTHENTICATE = 4,
+
+ /**
+ * Disable FINGERPRINT verification. This option can be used when calling
+ * #pj_stun_msg_check() and #pj_stun_msg_decode() to disable the
+ * verification of FINGERPRINT, for example when the STUN usage says when
+ * FINGERPRINT mechanism shall not * be used.
+ */
+ PJ_STUN_NO_FINGERPRINT_CHECK = 8
};