constants.js 184 B

1234567
  1. 'use strict'
  2. module.exports = {
  3. // https://tools.ietf.org/html/rfc4511#section-4.1.1
  4. // Message identifiers are an integer between (0, maxint).
  5. MAX_MSGID: Math.pow(2, 31) - 1
  6. }