js-libp2p-noise/src/constants.ts

7 lines
178 B
TypeScript
Raw Normal View History

2020-02-13 22:50:12 +01:00
export const NOISE_MSG_MAX_LENGTH_BYTES = 65535;
2020-02-17 12:11:55 +01:00
export const NOISE_MSG_MAX_LENGTH_BYTES_WITHOUT_TAG = NOISE_MSG_MAX_LENGTH_BYTES - 16;
2020-02-13 22:50:12 +01:00
2020-04-09 15:33:15 +02:00
export const DUMP_SESSION_KEYS = true;
2020-04-10 13:39:55 +02:00