1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
-- module(Mvrasn-Constants-1).
-- vsn('%CCaseRev: %').
-- date('%CCaseDate: %').
-- author('eedkbu').
-- =============================================================================
-- =============================================================================
--
-- Title : "MAP Constants".
--
-- ASN.1 module: "MAP-Constants"
--
-- =============================================================================
-- =============================================================================
--
-- NOTE:
--
-- In GSM 09.02 v. 6.1.0 all ASN.1 modules have 'Object Identifier' included
-- to indicate these modules uniquely. To have a same kind of definite naming
-- convention, parts of the these 'Object Identifier' have been included in
-- the file names that store the respective ASN.1 modules.
--
-- Therefore, the file name "Mvrasn-20-4.asn" indicates moduls '20' in
-- version '4' (PHASE 3).
--
-- As there is no such 'Object Identifier' in GSM 09.02 v. 3.11.0,
-- the names for the ASN.1 files of the ASN.1 modules from
-- this standard version are selected by the author. They are chosen the way
-- that they are indicating the relation to those modules
-- from GSM 09.02 v. 3.11.0
--
-- =============================================================================
-- ==============================================================
-- #1. REVISION LOG
-- ==============================================================
-- Rev Date Name What
-- .... ....... ....... ........................................
-- PA1 981015 eedkbu First draft. Based on GSM 09.02 v. 3.11.0)
-- ..............................................................
Mvrasn-Constants-1
DEFINITIONS
::=
BEGIN
EXPORTS
maxNumberOfTeleServices,
maxNumberOfBearerServices,
maxNumberOfSupplServices,
maxNumberOfCUG,
maxNumberOfForwardingFeatures,
maxNumberOfCallBarringFeatures,
maxNumberOfHlrId,
maxAddressLength,
maxNumberOfSentParameters
;
-- value assignment
maxNumberOfTeleServices INTEGER ::= 20
maxNumberOfBearerServices INTEGER ::= 50
maxNumberOfSupplServices INTEGER ::= 30
maxNumberOfCUG INTEGER ::= 10
maxNumberOfForwardingFeatures INTEGER ::= 13
maxNumberOfCallBarringFeatures INTEGER ::= 13
maxNumberOfHlrId INTEGER ::= 50
maxAddressLength INTEGER ::= 20
maxNumberOfSentParameters INTEGER ::= 10
-- this named value should correspond to the maximum of
-- the maxNumberOfCUG and the maximum number of authentication
-- set which may be returned by a HLR plus 1.
END
|