ISUP message types

/* ISUP message types. Q.763 table references in parenthesis. */ enum isup_msg_type { ISUP_IAM = 0x01, /* Initial address (32) */ ISUP_SAM = 0x02, /* Subsequent address (35) */ ISUP_INR = 0x03, /* Information request (31) */ ISUP_COT = 0x05, /* Continuity (28) */ ISUP_ACM = 0x06, /* Address complete (21) */ ISUP_CON = 0x07, /* Connect (27) */ ISUP_ANM = 0x09, /* Answer (22) */ ISUP_REL = 0x0c, /* Release (33) */ ISUP_SUS = 0x0d, /* Suspend (38) */ ISUP_RES = 0x0e, /* Resume (38) */ ISUP_RLC = 0x10, /* Release complete (34) */ ISUP_CCR = 0x11, /* Continuity Check Request (39) */ ISUP_RSC = 0x12, /* Reset circuit (39) */ ISUP_BLK = 0x13, /* Blocking (39) */ ISUP_UBL = 0x14, /* Unblocking (39) */ ISUP_BLA = 0x15, /* Blocking acknowledgement (39) */ ISUP_UBA = 0x16, /* Unblocking acknowledgement (39) */ ISUP_GRS = 0x17, /* Circuit group reset (41) */ ISUP_CGB = 0x18, /* Curciut group blocking (40) */ ISUP_CGU = 0x19, /* Curciut group unblocking (40) */ ISUP_CGA = 0x1a, /* Curciut group blocking acknowledgement (40) */ ISUP_CUA = 0x1b, /* Curciut group unblocking acknowledgement (40) */ ISUP_GRA = 0x29, /* Circuit group reset acknowledgement (25) */ ISUP_CPR = 0x2c, /* Call progress (23) */ ISUP_UEC = 0x2e, /* Unequipped CIC (39) */ };

你可能感兴趣的:(ISUP message types)