PduConsts.js 679 字节
export default function PduConsts() {}

PduConsts.NT_TERMINAL = 0;
PduConsts.NT_MULTIPORT_TERMINAL = 1;
PduConsts.NT_MCU = 2;

// PduPriority

PduConsts.DP_TOP = 0;
PduConsts.DP_HIGH = 1;
PduConsts.DP_MEDIUM = 2;
PduConsts.DP_LOW = 3;

// PduSegment
PduConsts.SEG_BEGIN = 0;
PduConsts.SEG_END = 1;
PduConsts.SEG_ONCE = 2;

// PduReturnType
PduConsts.RET_SUCCESS = 0;
PduConsts.RET_USER_REJECTED = 1;
PduConsts.RET_INVALID_CONFERENCE = 2;
PduConsts.RET_INVALID_PASSWORD = 3;
PduConsts.RET_INVALID_CONVENER_PASSWORD = 4;
PduConsts.RET_CHALLENGE_RESPONSE_REQUIRED = 5;
PduConsts.RET_INVALID_CHALLENGE_RESPONSE = 6;
PduConsts.RET_NO_CONNECTION = 7;
PduConsts.RET_FULL_CAPACITY = 8;