diff --git a/src/common/jingle_xtls.py b/src/common/jingle_xtls.py
index 5af585903cbf605d1a66d5be77036616092499d0..a5514025284f302198b9d40b8e967986b8d2214f 100644
--- a/src/common/jingle_xtls.py
+++ b/src/common/jingle_xtls.py
@@ -99,7 +99,8 @@ def get_context(fingerprint, verify_cb=None, remote_jid=None):
     constructs and returns the context objects
     """
     ctx = SSL.Context(SSL.SSLv23_METHOD)
-    flags = (SSL.OP_NO_SSLv2 | SSL.OP_NO_SSLv3 | SSL.OP_SINGLE_DH_USE)
+    flags = (SSL.OP_NO_SSLv2 | SSL.OP_NO_SSLv3 | SSL.OP_SINGLE_DH_USE \
+             | SSL.OP_NO_TICKET)
     ctx.set_options(flags)
     ctx.set_cipher_list('HIGH:!aNULL:!3DES')