diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2015-02-19 14:12:15 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2015-02-20 14:23:05 -0300 |
commit | 00b8cbaa31d48326b36928228269ac14276fd5ee (patch) | |
tree | b01d1b66bc933815104ee73b1805c1ef00d17e14 /src/leap/bitmask/config | |
parent | ff705af455af17710bab34c7959f1c54fb963839 (diff) |
Fall back to plain ZMQ if Curve is not available.
Use global flag for ZMQ_HAS_CURVE.
Closes #6646
Diffstat (limited to 'src/leap/bitmask/config')
-rw-r--r-- | src/leap/bitmask/config/flags.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/bitmask/config/flags.py b/src/leap/bitmask/config/flags.py index 6b70659d..cdde1971 100644 --- a/src/leap/bitmask/config/flags.py +++ b/src/leap/bitmask/config/flags.py @@ -55,3 +55,6 @@ OPENVPN_VERBOSITY = 1 # Skip the checks in the wizard, use for testing purposes only! SKIP_WIZARD_CHECKS = False + +# This flag tells us whether the current pyzmq supports using CurveZMQ or not. +ZMQ_HAS_CURVE = None |