--******************************************************************************************************************** -- Created: 14-SEP-1999 11:32:38 by OpenVMS SDL EV1-50 -- Source: 17-SEP-1998 13:55:58 PADO_3:[ANSI_V31P_AVMS.KIT]SS7_K_COMMON_.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package SS7_K_COMMON is -- module SS7_K_COMMON_ IDENT X02.03-001 ---------------------------------------------------------------------------- ------------------------------------------------------------------------------ -- -- CONSTANTS -- ----------------------------------------------------------------------------- -- -- Symbols used to define the item code of the indication -- routines item list (when enabling the indications). -- SS7_K_SCCP_N_UNITDATA : constant := 30; SS7_K_SCCP_N_MGT_MSG : constant := 31; SS7_K_SCCP_USER_DISTRIB_INDICATION : constant := 32; SS7_K_SCCP_N_NOTICE : constant := 33; SS7_K_SCCP_N_TRAFFIC : constant := 34; SS7_K_MTP_TRANSFER : constant := 35; SS7_K_MTP_USER_DISTRIB_INDICATION : constant := 36; SS7_K_MTP_INDICATION : constant := 37; -- -- Symbols used to define the MTP-INDICATION type in the SS7$MTP_NETWORK_INDICATION routine -- SS7_K_MTP_PAUSE_IND : constant := 60; SS7_K_MTP_RESUME_IND : constant := 61; SS7_K_MTP_STATUS_IND : constant := 62; SS7_K_MTP_UPU : constant := 63; SS7_K_MTP_CONGESTION : constant := 64; -- --Symbols used to define the nodes and applications state -- SS7_K_DIST_APPLI_DOWN : constant := 70; SS7_K_DIST_APPLI_UP : constant := 71; SS7_K_DIST_APPLI_CONGESTED : constant := 72; SS7_K_DIST_APPLI_UNCONGESTED : constant := 73; SS7_K_NODE_UP : constant := 74; SS7_K_NODE_DOWN : constant := 75; SS7_K_DIST_APPLI_RESTRICTED : constant := 76; SS7_K_DIST_APPLI_UNRESTRICTED : constant := 77; -- Symbols used to define the MTP-INDICATION type in the SS7$MTP_NETWORK_INDICATION routine -- SS7_K_SCCP_N_STATE_IND : constant := 80; SS7_K_SCCP_N_PC_STATE_IND : constant := 81; SS7_K_SCCP_N_COORD_IND : constant := 82; SS7_K_SCCP_N_COORD_CNF : constant := 83; -- Symbols used to define the SCCP Management Messages -- SS7_K_SCCP_USER_IN_SERVICE : constant := 0; SS7_K_SCCP_USER_OUT_OF_SERVICE : constant := 1; SS7_K_SCCP_PC_ACCESSIBLE : constant := 0; SS7_K_SCCP_PC_INACCESSIBLE : constant := 1; SS7_K_SCCP_PC_CONGESTED : constant := 2; -- -- Maximum length of a message sent by the user to the user distribution -- SS7_K_MAX_LENGTH_USER_MSG : constant := 255; -- -- Maximum length of a message sent by the user to n_unitdata_req -- SS7_K_MAX_LENGTH_SCCP_USER_DATA : constant := 2630; end SS7_K_COMMON;