Update the built-in Chacha20-Poly1305 code to an RFC 7539 complaint version.
[tinc] / test / integration / testlib / const.py
1 """Some hardcoded constants."""
2
3 import os
4
5 # Exit code to skip current test
6 EXIT_SKIP = 77
7
8 # Family name for multiprocessing Listener/Connection
9 MPC_FAMILY = "AF_PIPE" if os.name == "nt" else "AF_UNIX"