remove --<B-- and --B>-- markers from asn1 source

this marker is somehow related to an ancient ETSI / Siemens ASN.1 tool
This commit is contained in:
Harald Welte 2011-04-11 21:22:50 +02:00
parent a1786e9e56
commit e24d777213
13 changed files with 431 additions and 427 deletions

4
main.c
View File

@ -132,6 +132,10 @@ restart:
} else { } else {
/* output already enabled */ /* output already enabled */
dump_start = start_offs; dump_start = start_offs;
/* skip strange markers that worked around ancient asn1 tools */
if (!strncmp(wh->base_addr+dump_start, "--<B--", 6) ||
!strncmp(wh->base_addr+dump_start, "--B>--", 6))
dump_start += 6;
} }
if (dump_start > 0) { if (dump_start > 0) {

View File

@ -13,21 +13,21 @@ IMPLICIT TAGS
BEGIN BEGIN
EXPORTS EXPORTS
--<B-- InfoForIC-Arg,--B>-- InfoForIC-Arg,
--<B-- ConnectToFollowingAddressArg,--B>-- ConnectToFollowingAddressArg,
--<B-- ProcessCallWaitingArg,--B>-- ProcessCallWaitingArg,
--<B-- InfoForOC-Arg,--B>-- InfoForOC-Arg,
SendRoutingInfoArg, SendRoutingInfoArg,
SendRoutingInfoRes, SendRoutingInfoRes,
ProvideRoamingNumberArg--<B--,--B>-- ProvideRoamingNumberArg,
--<B-- CompleteCallArg--B>-- CompleteCallArg
; ;
IMPORTS IMPORTS
--<B-- NoReplyConditionTime,--B>-- NoReplyConditionTime,
--<B-- CUG-Index,--B>-- CUG-Index,
CUG-Interlock, CUG-Interlock,
--<B-- SS-DataList,--B>-- SS-DataList,
ForwardingData ForwardingData
FROM MAP-SS-DataTypes { FROM MAP-SS-DataTypes {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
@ -36,23 +36,23 @@ FROM MAP-SS-DataTypes {
ISDN-AddressString, ISDN-AddressString,
ExternalSignalInfo, ExternalSignalInfo,
IMSI, IMSI,
--<B-- IMEI,--B>-- IMEI,
LMSI--<B--,--B>-- LMSI,
--<B-- Category,--B>-- Category,
--<B-- BasicServiceCode--B>-- BasicServiceCode
FROM MAP-CommonDataTypes { FROM MAP-CommonDataTypes {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-CommonDataTypes (18) version2 (2)} moduleId (3) map-CommonDataTypes (18) version2 (2)}
; ;
--<B--InfoForIC-Arg ::= SEQUENCE {--B>-- InfoForIC-Arg ::= SEQUENCE {
--<B-- roamingNumber [0] ISDN-AddressString,--B>-- roamingNumber [0] ISDN-AddressString,
--<B-- basicService BasicServiceCode OPTIONAL,--B>-- basicService BasicServiceCode OPTIONAL,
--<B-- dialledNumber [5] ISDN-AddressString OPTIONAL,--B>-- dialledNumber [5] ISDN-AddressString OPTIONAL,
--<B-- cug-CheckInfo [6] CUG-CheckInfo OPTIONAL,--B>-- cug-CheckInfo [6] CUG-CheckInfo OPTIONAL,
-- OA1 cug-CHeckInfo must be absent in version 1 -- OA1 cug-CHeckInfo must be absent in version 1
--<B-- numberOfForwarding [7] NumberOfForwarding OPTIONAL}--B>-- numberOfForwarding [7] NumberOfForwarding OPTIONAL}
CUG-CheckInfo ::= SEQUENCE { CUG-CheckInfo ::= SEQUENCE {
cug-Interlock CUG-Interlock, cug-Interlock CUG-Interlock,
@ -60,28 +60,28 @@ CUG-CheckInfo ::= SEQUENCE {
NumberOfForwarding ::= INTEGER (1..5) NumberOfForwarding ::= INTEGER (1..5)
--<B--ConnectToFollowingAddressArg ::= SEQUENCE {--B>-- ConnectToFollowingAddressArg ::= SEQUENCE {
--<B-- forwardingData ForwardingData,--B>-- forwardingData ForwardingData,
--<B-- msisdn ISDN-AddressString OPTIONAL,--B>-- msisdn ISDN-AddressString OPTIONAL,
--<B-- cug-CheckInfo CUG-CheckInfo OPTIONAL}--B>-- cug-CheckInfo CUG-CheckInfo OPTIONAL}
-- OA1 cug-CheckInfo must be absent in version 1 -- OA1 cug-CheckInfo must be absent in version 1
--<B--ProcessCallWaitingArg ::= SEQUENCE {--B>-- ProcessCallWaitingArg ::= SEQUENCE {
--<B-- msisdn [0] ISDN-AddressString,--B>-- msisdn [0] ISDN-AddressString,
--<B-- cug-Index [1] CUG-Index OPTIONAL,--B>-- cug-Index [1] CUG-Index OPTIONAL,
--<B-- gsm-BearerCapability [2] ExternalSignalInfo OPTIONAL,--B>-- gsm-BearerCapability [2] ExternalSignalInfo OPTIONAL,
--<B-- networkSignalInfo [3] ExternalSignalInfo OPTIONAL,--B>-- networkSignalInfo [3] ExternalSignalInfo OPTIONAL,
--<B-- noReplyConditionTime [4] NoReplyConditionTime OPTIONAL,--B>-- noReplyConditionTime [4] NoReplyConditionTime OPTIONAL,
--<B-- ss-DataList [5] SS-DataList OPTIONAL}--B>-- ss-DataList [5] SS-DataList OPTIONAL}
--<B--InfoForOC-Arg ::= SEQUENCE {--B>-- InfoForOC-Arg ::= SEQUENCE {
--<B-- calledNumber [0] ISDN-AddressString,--B>-- calledNumber [0] ISDN-AddressString,
--<B-- basicService BasicServiceCode OPTIONAL,--B>-- basicService BasicServiceCode OPTIONAL,
--<B-- cug-Index [4] CUG-Index OPTIONAL,--B>-- cug-Index [4] CUG-Index OPTIONAL,
-- OA1 cug-Index must be absent in version 1 -- OA1 cug-Index must be absent in version 1
--<B-- supressPrefCUG [5] NULL OPTIONAL,--B>-- supressPrefCUG [5] NULL OPTIONAL,
-- OA1 supressPrefCUG must be absent in version 1 -- OA1 supressPrefCUG must be absent in version 1
--<B-- supressOutgoingAccess [6] NULL OPTIONAL}--B>-- supressOutgoingAccess [6] NULL OPTIONAL}
-- OA1 supressOutgoingAccess must be absent in version 1 -- OA1 supressOutgoingAccess must be absent in version 1
SendRoutingInfoArg ::= SEQUENCE { SendRoutingInfoArg ::= SEQUENCE {
@ -111,22 +111,22 @@ ProvideRoamingNumberArg ::= SEQUENCE {
gsm-BearerCapability [5] ExternalSignalInfo OPTIONAL, gsm-BearerCapability [5] ExternalSignalInfo OPTIONAL,
networkSignalInfo [6] ExternalSignalInfo OPTIONAL} networkSignalInfo [6] ExternalSignalInfo OPTIONAL}
--<B--CompleteCallArg ::= SEQUENCE {--B>-- CompleteCallArg ::= SEQUENCE {
--<B-- msisdnOrIMEI MSISDN-OrIMEI,--B>-- msisdnOrIMEI MSISDN-OrIMEI,
--<B-- category [1] Category OPTIONAL,--B>-- category [1] Category OPTIONAL,
--<B-- cug-Index [2] CUG-Index OPTIONAL,--B>-- cug-Index [2] CUG-Index OPTIONAL,
-- NU1 cug-INDEX must not be used in version 1 -- NU1 cug-INDEX must not be used in version 1
--<B-- gsm-BearerCapability [3] ExternalSignalInfo OPTIONAL,--B>-- gsm-BearerCapability [3] ExternalSignalInfo OPTIONAL,
--<B-- networkSignalInfo [7] ExternalSignalInfo OPTIONAL,--B>-- networkSignalInfo [7] ExternalSignalInfo OPTIONAL,
-- OA1 networkSignalInfo must be absent in version 1 -- OA1 networkSignalInfo must be absent in version 1
--<B-- noReplyConditionTime [4] NoReplyConditionTime OPTIONAL,--B>-- noReplyConditionTime [4] NoReplyConditionTime OPTIONAL,
--<B-- ss-DataList [5] SS-DataList OPTIONAL,--B>-- ss-DataList [5] SS-DataList OPTIONAL,
--<B-- cug-CheckInfo [6] CUG-CheckInfo OPTIONAL}--B>-- cug-CheckInfo [6] CUG-CheckInfo OPTIONAL}
-- OA1 cug-CheckInfo must be absent in version 1 -- OA1 cug-CheckInfo must be absent in version 1
--<B--MSISDN-OrIMEI ::= CHOICE {--B>-- MSISDN-OrIMEI ::= CHOICE {
--<B-- msisdn [0] ISDN-AddressString,--B>-- msisdn [0] ISDN-AddressString,
--<B-- imei [8] IMEI}--B>-- imei [8] IMEI}
-- NU1 imei must not be used in version 1 -- NU1 imei must not be used in version 1

View File

@ -11,13 +11,13 @@ DEFINITIONS
BEGIN BEGIN
EXPORTS EXPORTS
--<B-- SendInfoForIncomingCall,--B>-- SendInfoForIncomingCall,
--<B-- ConnectToFollowingAddress,--B>-- ConnectToFollowingAddress,
--<B-- ProcessCallWaiting,--B>-- ProcessCallWaiting,
--<B-- SendInfoForOutgoingCall,--B>-- SendInfoForOutgoingCall,
SendRoutingInfo, SendRoutingInfo,
ProvideRoamingNumber--<B--,--B>-- ProvideRoamingNumber,
--<B-- CompleteCall--B>-- CompleteCall
; ;
IMPORTS IMPORTS
@ -30,16 +30,16 @@ FROM TCAPMessages {ccitt recommendation q 773 modules(2) messages (1)}
FacilityNotSupported, FacilityNotSupported,
UnknownSubscriber, UnknownSubscriber,
NumberChanged, NumberChanged,
--<B-- UnidentifiedSubscriber,--B>-- UnidentifiedSubscriber,
--<B-- UnallocatedRoamingNumber,--B>-- UnallocatedRoamingNumber,
BearerServiceNotProvisioned, BearerServiceNotProvisioned,
TeleserviceNotProvisioned, TeleserviceNotProvisioned,
NoRoamingNumberAvailable, NoRoamingNumberAvailable,
AbsentSubscriber, AbsentSubscriber,
--<B-- BusySubscriber,--B>-- BusySubscriber,
--<B-- NoSubscriberReply,--B>-- NoSubscriberReply,
--<B-- RadioCongestion,--B>-- RadioCongestion,
--<B-- ImpossibleCallCompletion,--B>-- ImpossibleCallCompletion,
CallBarred, CallBarred,
ForwardingViolation, ForwardingViolation,
CUG-Reject CUG-Reject
@ -47,14 +47,14 @@ FROM MAP-Errors {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-Errors (10) version2 (2)} moduleId (3) map-Errors (10) version2 (2)}
--<B-- InfoForIC-Arg,--B>-- InfoForIC-Arg,
--<B-- ConnectToFollowingAddressArg,--B>-- ConnectToFollowingAddressArg,
--<B-- ProcessCallWaitingArg,--B>-- ProcessCallWaitingArg,
--<B-- InfoForOC-Arg,--B>-- InfoForOC-Arg,
SendRoutingInfoArg, SendRoutingInfoArg,
SendRoutingInfoRes, SendRoutingInfoRes,
ProvideRoamingNumberArg--<B--,--B>-- ProvideRoamingNumberArg,
--<B-- CompleteCallArg--B>-- CompleteCallArg
FROM MAP-CH-DataTypes { FROM MAP-CH-DataTypes {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-CH-DataTypes (13) version2 (2)} moduleId (3) map-CH-DataTypes (13) version2 (2)}
@ -66,57 +66,57 @@ FROM MAP-CommonDataTypes {
; ;
--<B--SendInfoForIncomingCall ::= OPERATION --Timer m----B>-- SendInfoForIncomingCall ::= OPERATION --Timer m--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- infoForIC-Arg InfoForIC-Arg--B>-- infoForIC-Arg InfoForIC-Arg
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure,--B>-- SystemFailure,
--<B-- DataMissing,--B>-- DataMissing,
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- UnknownSubscriber,--B>-- UnknownSubscriber,
--<B-- UnidentifiedSubscriber,--B>-- UnidentifiedSubscriber,
--<B-- UnallocatedRoamingNumber,--B>-- UnallocatedRoamingNumber,
--<B-- AbsentSubscriber,--B>-- AbsentSubscriber,
--<B-- ForwardingViolation,--B>-- ForwardingViolation,
--<B-- ImpossibleCallCompletion}--B>-- ImpossibleCallCompletion}
--<B-- LINKED {--B>-- LINKED {
--<B-- CompleteCall,--B>-- CompleteCall,
--<B-- ProcessCallWaiting,--B>-- ProcessCallWaiting,
--<B-- ConnectToFollowingAddress}--B>-- ConnectToFollowingAddress}
--<B--ConnectToFollowingAddress ::= OPERATION --Timer s----B>-- ConnectToFollowingAddress ::= OPERATION --Timer s--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- connectToFollowingAddressArg ConnectToFollowingAddressArg--B>-- connectToFollowingAddressArg ConnectToFollowingAddressArg
--<B--ProcessCallWaiting ::= OPERATION --Timer s----B>-- ProcessCallWaiting ::= OPERATION --Timer s--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- processCallWaitingArg ProcessCallWaitingArg--B>-- processCallWaitingArg ProcessCallWaitingArg
--<B-- -- optional----B>-- -- optional--
--<B-- -- OA1 processCallWaitingArg must be absent in version 1----B>-- -- OA1 processCallWaitingArg must be absent in version 1--
--<B-- ERRORS {--B>-- ERRORS {
--<B-- DataMissing,--B>-- DataMissing,
--<B-- -- NU1 DataMissing must not be used in version 1----B>-- -- NU1 DataMissing must not be used in version 1--
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- -- NU1 UnexpectedDataValue must not be used in version 1----B>-- -- NU1 UnexpectedDataValue must not be used in version 1--
--<B-- BusySubscriber,--B>-- BusySubscriber,
--<B-- -- NU1 BusySubscriber must not be used in version 1----B>-- -- NU1 BusySubscriber must not be used in version 1--
--<B-- NoSubscriberReply}--B>-- NoSubscriberReply}
--<B-- -- NU1 NoSubscriberReply must not be used in version 1----B>-- -- NU1 NoSubscriberReply must not be used in version 1--
--<B--SendInfoForOutgoingCall ::= OPERATION --Timer ml----B>-- SendInfoForOutgoingCall ::= OPERATION --Timer ml--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- infoForOC-Arg InfoForOC-Arg--B>-- infoForOC-Arg InfoForOC-Arg
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure,--B>-- SystemFailure,
--<B-- DataMissing,--B>-- DataMissing,
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- UnknownSubscriber,--B>-- UnknownSubscriber,
--<B-- BearerServiceNotProvisioned,--B>-- BearerServiceNotProvisioned,
--<B-- TeleserviceNotProvisioned,--B>-- TeleserviceNotProvisioned,
--<B-- CallBarred,--B>-- CallBarred,
--<B-- CUG-Reject}--B>-- CUG-Reject}
--<B-- LINKED {--B>-- LINKED {
--<B-- CompleteCall}--B>-- CompleteCall}
SendRoutingInfo ::= OPERATION --Timer m-- SendRoutingInfo ::= OPERATION --Timer m--
ARGUMENT ARGUMENT
@ -151,15 +151,15 @@ ProvideRoamingNumber ::= OPERATION --Timer m--
AbsentSubscriber, AbsentSubscriber,
NoRoamingNumberAvailable} NoRoamingNumberAvailable}
--<B--CompleteCall ::= OPERATION --Timer ml----B>-- CompleteCall ::= OPERATION --Timer ml--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- completeCallArg CompleteCallArg--B>-- completeCallArg CompleteCallArg
--<B-- ERRORS {--B>-- ERRORS {
--<B-- DataMissing,--B>-- DataMissing,
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- BusySubscriber,--B>-- BusySubscriber,
--<B-- NoSubscriberReply,--B>-- NoSubscriberReply,
--<B-- RadioCongestion}--B>-- RadioCongestion}
END END

View File

@ -28,8 +28,8 @@ EXPORTS
TMSI, TMSI,
SubscriberId, SubscriberId,
IMEI, IMEI,
--<B-- LocAreaId,--B>-- LocAreaId,
--<B-- LocAreaIdOrNone,--B>-- LocAreaIdOrNone,
LocationInfo, LocationInfo,
HLR-List, HLR-List,
LMSI, LMSI,
@ -172,7 +172,7 @@ IMEI ::= TBCD-STRING (SIZE (8))
-- individual serial number: 6 digits -- individual serial number: 6 digits
-- unassigned: 1 digit -- unassigned: 1 digit
--<B--LocAreaId ::= OCTET STRING (SIZE (2..5))--B>-- LocAreaId ::= OCTET STRING (SIZE (2..5))
-- Octets are coded according to GSM 04.08. -- Octets are coded according to GSM 04.08.
-- The internal structure is defined as follows: -- The internal structure is defined as follows:
-- Mobile Country Code: 3 digits according to Rec E.212 -- Mobile Country Code: 3 digits according to Rec E.212
@ -180,9 +180,9 @@ IMEI ::= TBCD-STRING (SIZE (8))
-- Mobile Network Code: 2 digits according to Rec E.212 -- Mobile Network Code: 2 digits according to Rec E.212
-- Location Area Code: 2 octets according to GSM 04.08 -- Location Area Code: 2 octets according to GSM 04.08
--<B--LocAreaIdOrNone ::= CHOICE {--B>-- LocAreaIdOrNone ::= CHOICE {
--<B-- locAreaId LocAreaId,--B>-- locAreaId LocAreaId,
--<B-- noLocAreaId NULL}--B>-- noLocAreaId NULL}
LocationInfo ::= CHOICE { LocationInfo ::= CHOICE {
roamingNumber [0] ISDN-AddressString, roamingNumber [0] ISDN-AddressString,

View File

@ -14,7 +14,7 @@ BEGIN
EXPORTS EXPORTS
RoamingNotAllowedCause, RoamingNotAllowedCause,
--<B-- BusySubscriberCause,--B>-- BusySubscriberCause,
CallBarringCause, CallBarringCause,
CUG-RejectCause, CUG-RejectCause,
SS-IncompatibilityCause, SS-IncompatibilityCause,
@ -46,10 +46,10 @@ RoamingNotAllowedCause ::= ENUMERATED {
locationAreaNotAllowed (2), locationAreaNotAllowed (2),
operatorDeterminedBarring (3)} operatorDeterminedBarring (3)}
--<B--BusySubscriberCause ::= ENUMERATED {--B>-- BusySubscriberCause ::= ENUMERATED {
--<B-- networkDeterminedUserBusy (0),--B>-- networkDeterminedUserBusy (0),
--<B-- moreCallsAllowed (1),--B>-- moreCallsAllowed (1),
--<B-- userDeterminedUserBusy (2)}--B>-- userDeterminedUserBusy (2)}
CallBarringCause ::= ENUMERATED { CallBarringCause ::= ENUMERATED {
barringServiceActive (0), barringServiceActive (0),

View File

@ -23,9 +23,9 @@ EXPORTS
NumberChanged, NumberChanged,
UnknownBaseStation, UnknownBaseStation,
UnknownMSC, UnknownMSC,
--<B-- UnknownLocArea,--B>-- UnknownLocArea,
UnidentifiedSubscriber, UnidentifiedSubscriber,
--<B-- UnallocatedRoamingNumber,--B>-- UnallocatedRoamingNumber,
UnknownEquipment, UnknownEquipment,
-- subscription errors -- subscription errors
@ -47,10 +47,10 @@ EXPORTS
-- call handling errors -- call handling errors
NoRoamingNumberAvailable, NoRoamingNumberAvailable,
AbsentSubscriber, AbsentSubscriber,
--<B-- BusySubscriber,--B>-- BusySubscriber,
--<B-- NoSubscriberReply,--B>-- NoSubscriberReply,
--<B-- RadioCongestion,--B>-- RadioCongestion,
--<B-- ImpossibleCallCompletion,--B>-- ImpossibleCallCompletion,
CallBarred, CallBarred,
ForwardingViolation, ForwardingViolation,
CUG-Reject, CUG-Reject,
@ -77,14 +77,14 @@ IMPORTS
FROM TCAPMessages {ccitt recommendation q 773 modules(2) messages (1)} FROM TCAPMessages {ccitt recommendation q 773 modules(2) messages (1)}
SS-Status, SS-Status,
SS-SubscriptionOption--<B--,--B>-- SS-SubscriptionOption,
--<B-- SS-List--B>-- SS-List
FROM MAP-SS-DataTypes { FROM MAP-SS-DataTypes {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-SS-DataTypes (14) version2 (2)} moduleId (3) map-SS-DataTypes (14) version2 (2)}
RoamingNotAllowedCause, RoamingNotAllowedCause,
--<B-- BusySubscriberCause,--B>-- BusySubscriberCause,
CallBarringCause, CallBarringCause,
CUG-RejectCause, CUG-RejectCause,
SS-IncompatibilityCause, SS-IncompatibilityCause,
@ -125,11 +125,11 @@ UnknownBaseStation ::= ERROR
UnknownMSC ::= ERROR UnknownMSC ::= ERROR
--<B--UnknownLocArea ::= ERROR--B>-- UnknownLocArea ::= ERROR
UnidentifiedSubscriber ::= ERROR UnidentifiedSubscriber ::= ERROR
--<B--UnallocatedRoamingNumber ::= ERROR--B>-- UnallocatedRoamingNumber ::= ERROR
UnknownEquipment ::= ERROR UnknownEquipment ::= ERROR
@ -178,19 +178,19 @@ AbsentSubscriber ::= ERROR
-- optional -- optional
-- OA>1 mwd-Set must be absent in version greater 1 -- OA>1 mwd-Set must be absent in version greater 1
--<B--BusySubscriber ::= ERROR--B>-- BusySubscriber ::= ERROR
--<B-- PARAMETER--B>-- PARAMETER
--<B-- busySubscriberCause BusySubscriberCause--B>-- busySubscriberCause BusySubscriberCause
--<B-- -- optional----B>-- -- optional--
--<B--NoSubscriberReply ::= ERROR--B>-- NoSubscriberReply ::= ERROR
--<B--RadioCongestion ::= ERROR--B>-- RadioCongestion ::= ERROR
--<B--ImpossibleCallCompletion ::= ERROR--B>-- ImpossibleCallCompletion ::= ERROR
--<B-- PARAMETER--B>-- PARAMETER
--<B-- ss-List SS-List--B>-- ss-List SS-List
--<B-- -- optional----B>-- -- optional--
CallBarred ::= ERROR CallBarred ::= ERROR
PARAMETER PARAMETER

View File

@ -15,21 +15,21 @@ BEGIN
EXPORTS EXPORTS
-- location registration types -- location registration types
--<B-- UpdateLocationAreaArg,--B>-- UpdateLocationAreaArg,
UpdateLocationArg, UpdateLocationArg,
UpdateLocationRes, UpdateLocationRes,
CancelLocationArg, CancelLocationArg,
PurgeMS-Arg, PurgeMS-Arg,
SendIdentificationRes, SendIdentificationRes,
--<B-- SRES,--B>-- SRES,
-- page management types -- page management types
--<B-- PageArg,--B>-- PageArg,
--<B-- SearchForMS-Arg,--B>-- SearchForMS-Arg,
-- access management types -- access management types
--<B-- ProcessAccessRequestArg,--B>-- ProcessAccessRequestArg,
--<B-- ProcessAccessRequestRes,--B>-- ProcessAccessRequestRes,
-- handover types -- handover types
PerformHO-Arg, PerformHO-Arg,
@ -37,12 +37,12 @@ EXPORTS
PerformSubsequentHO-Arg, PerformSubsequentHO-Arg,
-- authentication management types -- authentication management types
--<B-- AuthenticateArg,--B>-- AuthenticateArg,
SendAuthenticationInfoArg, SendAuthenticationInfoArg,
SendAuthenticationInfoRes, SendAuthenticationInfoRes,
-- security management types -- security management types
--<B-- SetCipheringModeArg,--B>-- SetCipheringModeArg,
CheckIMEI-Arg, CheckIMEI-Arg,
-- subscriber management types -- subscriber management types
@ -69,11 +69,11 @@ FROM MAP-SS-DataTypes {
ISDN-AddressString, ISDN-AddressString,
ExternalSignalInfo, ExternalSignalInfo,
IMSI, IMSI,
--<B-- TMSI,--B>-- TMSI,
SubscriberId, SubscriberId,
IMEI, IMEI,
--<B-- LocAreaId,--B>-- LocAreaId,
--<B-- LocAreaIdOrNone,--B>-- LocAreaIdOrNone,
LocationInfo, LocationInfo,
HLR-List, HLR-List,
LMSI, LMSI,
@ -91,12 +91,12 @@ FROM MAP-CommonDataTypes {
-- location registration types -- location registration types
--<B--UpdateLocationAreaArg ::= SEQUENCE {--B>-- UpdateLocationAreaArg ::= SEQUENCE {
--<B-- subscriberId SubscriberId,--B>-- subscriberId SubscriberId,
--<B-- previousLocAreaId LocAreaIdOrNone,--B>-- previousLocAreaId LocAreaIdOrNone,
--<B-- targetLocAreaId LocAreaId,--B>-- targetLocAreaId LocAreaId,
--<B-- cksn CKSN OPTIONAL}--B>-- cksn CKSN OPTIONAL}
--<B-- -- OP1 cksn must be present in version 1----B>-- -- OP1 cksn must be present in version 1--
UpdateLocationArg ::= SEQUENCE { UpdateLocationArg ::= SEQUENCE {
imsi IMSI, imsi IMSI,
@ -155,41 +155,41 @@ Kc ::= OCTET STRING (SIZE (8))
-- page management types -- page management types
--<B--PageArg ::= SEQUENCE {--B>-- PageArg ::= SEQUENCE {
--<B-- imsi [0] IMSI,--B>-- imsi [0] IMSI,
--<B-- tmsi [1] TMSI OPTIONAL,--B>-- tmsi [1] TMSI OPTIONAL,
--<B-- locAreaId [2] LocAreaId}--B>-- locAreaId [2] LocAreaId}
--<B--SearchForMS-Arg ::= SEQUENCE {--B>-- SearchForMS-Arg ::= SEQUENCE {
--<B-- imsi IMSI,--B>-- imsi IMSI,
--<B-- storedLocAreaId LocAreaIdOrNone}--B>-- storedLocAreaId LocAreaIdOrNone}
-- access management types -- access management types
--<B--ProcessAccessRequestArg ::= SEQUENCE {--B>-- ProcessAccessRequestArg ::= SEQUENCE {
--<B-- subscriberIdOrIMEI SubscriberIdOrIMEI,--B>-- subscriberIdOrIMEI SubscriberIdOrIMEI,
--<B-- cm-ServiceType CM-ServiceType,--B>-- cm-ServiceType CM-ServiceType,
--<B-- accessConnectionStatus AccessConnectionStatus,--B>-- accessConnectionStatus AccessConnectionStatus,
--<B-- cksn CKSN,--B>-- cksn CKSN,
--<B-- targetLocArea LocAreaId OPTIONAL}--B>-- targetLocArea LocAreaId OPTIONAL}
-- OA1 targetLocAreas must be absent in version 1 -- OA1 targetLocAreas must be absent in version 1
-- OP>1 targetLocArea must be present in version greater 1 -- OP>1 targetLocArea must be present in version greater 1
--<B--SubscriberIdOrIMEI ::= CHOICE {--B>-- SubscriberIdOrIMEI ::= CHOICE {
--<B-- subscriberID SubscriberId,--B>-- subscriberID SubscriberId,
--<B-- imei [2] IMEI}--B>-- imei [2] IMEI}
-- NU1 imei must not be used in version 1 -- NU1 imei must not be used in version 1
--<B--CM-ServiceType ::= ENUMERATED {--B>-- CM-ServiceType ::= ENUMERATED {
--<B-- mobileOriginatingCallorPacketMode (1),--B>-- mobileOriginatingCallorPacketMode (1),
--<B-- emergencyCallEstablishment (2),--B>-- emergencyCallEstablishment (2),
--<B-- shortMessageService (4),--B>-- shortMessageService (4),
--<B-- ss-Activation (8),--B>-- ss-Activation (8),
--<B-- mobileOriginatingCallReestablishment (9),--B>-- mobileOriginatingCallReestablishment (9),
--<B-- mobileTerminatingCall (10)}--B>-- mobileTerminatingCall (10)}
--<B--AccessConnectionStatus ::= OCTET STRING (SIZE (1))--B>-- AccessConnectionStatus ::= OCTET STRING (SIZE (1))
-- bits 87654: 00000 (unused) -- bits 87654: 00000 (unused)
@ -205,13 +205,13 @@ Kc ::= OCTET STRING (SIZE (8))
-- 0 MM-connection existing and authenticated -- 0 MM-connection existing and authenticated
-- 1 MM-connection existing and not authenticated -- 1 MM-connection existing and not authenticated
--<B--ProcessAccessRequestRes ::= SEQUENCE {--B>-- ProcessAccessRequestRes ::= SEQUENCE {
--<B-- imsi-OrIMEI IMSI-OrIMEI,--B>-- imsi-OrIMEI IMSI-OrIMEI,
--<B-- msisdn ISDN-AddressString OPTIONAL}--B>-- msisdn ISDN-AddressString OPTIONAL}
--<B--IMSI-OrIMEI ::= CHOICE {--B>-- IMSI-OrIMEI ::= CHOICE {
--<B-- imsi IMSI,--B>-- imsi IMSI,
--<B-- imei [0] IMEI}--B>-- imei [0] IMEI}
-- NU1 imei must not be used in version 1 -- NU1 imei must not be used in version 1
-- handover types -- handover types
@ -257,11 +257,11 @@ PerformSubsequentHO-Arg ::= SEQUENCE {
-- authentication management types -- authentication management types
--<B--AuthenticateArg ::= SEQUENCE {--B>-- AuthenticateArg ::= SEQUENCE {
--<B-- rand RAND,--B>-- rand RAND,
--<B-- cksn CKSN}--B>-- cksn CKSN}
--<B--CKSN ::= OCTET STRING (SIZE (1))--B>-- CKSN ::= OCTET STRING (SIZE (1))
-- bits 87654: 00000 (unused) -- bits 87654: 00000 (unused)
@ -276,13 +276,13 @@ Ki ::= OCTET STRING (SIZE (16))
-- security management types -- security management types
--<B--SetCipheringModeArg ::= SEQUENCE {--B>-- SetCipheringModeArg ::= SEQUENCE {
--<B-- cipheringMode CipheringMode,--B>-- cipheringMode CipheringMode,
--<B-- kc Kc OPTIONAL}--B>-- kc Kc OPTIONAL}
--<B--CipheringMode ::= ENUMERATED {--B>-- CipheringMode ::= ENUMERATED {
--<B-- noEncryption (1),--B>-- noEncryption (1),
--<B-- version1-GSM (2)}--B>-- version1-GSM (2)}
CheckIMEI-Arg ::= CHOICE { CheckIMEI-Arg ::= CHOICE {
equipmentStatus EquipmentStatus, equipmentStatus EquipmentStatus,

View File

@ -13,20 +13,20 @@ BEGIN
EXPORTS EXPORTS
-- location registration operations -- location registration operations
--<B-- UpdateLocationArea,--B>-- UpdateLocationArea,
UpdateLocation, UpdateLocation,
CancelLocation, CancelLocation,
PurgeMS, PurgeMS,
SendIdentification, SendIdentification,
--<B-- DetachIMSI,--B>-- DetachIMSI,
--<B-- AttachIMSI,--B>-- AttachIMSI,
-- paging management operations -- paging management operations
--<B-- Page,--B>-- Page,
--<B-- SearchForMS,--B>-- SearchForMS,
-- access management operations -- access management operations
--<B-- ProcessAccessRequest,--B>-- ProcessAccessRequest,
-- handover operations -- handover operations
PerformHandover, PerformHandover,
@ -34,19 +34,19 @@ EXPORTS
ProcessAccessSignalling, ProcessAccessSignalling,
ForwardAccessSignalling, ForwardAccessSignalling,
PerformSubsequentHandover, PerformSubsequentHandover,
--<B-- AllocateHandoverNumber,--B>-- AllocateHandoverNumber,
--<B-- SendHandoverReport,--B>-- SendHandoverReport,
-- authentication management operations -- authentication management operations
--<B-- Authenticate,--B>-- Authenticate,
SendAuthenticationInfo, SendAuthenticationInfo,
-- security management operations -- security management operations
--<B-- SetCipheringMode,--B>-- SetCipheringMode,
-- IMEI management operations -- IMEI management operations
CheckIMEI, CheckIMEI,
--<B-- ObtainIMEI,--B>-- ObtainIMEI,
-- subscriber management operations -- subscriber management operations
SendParameters, SendParameters,
@ -54,8 +54,8 @@ EXPORTS
DeleteSubscriberData, DeleteSubscriberData,
-- identity management operations -- identity management operations
--<B-- ProvideIMSI,--B>-- ProvideIMSI,
--<B-- ForwardNewTMSI,--B>-- ForwardNewTMSI,
-- fault recovery operations -- fault recovery operations
Reset, Reset,
@ -73,40 +73,40 @@ FROM TCAPMessages {ccitt recommendation q 773 modules(2) messages (1)}
UnknownSubscriber, UnknownSubscriber,
UnknownBaseStation, UnknownBaseStation,
UnknownMSC, UnknownMSC,
--<B-- UnknownLocArea,--B>-- UnknownLocArea,
UnidentifiedSubscriber, UnidentifiedSubscriber,
UnknownEquipment, UnknownEquipment,
RoamingNotAllowed, RoamingNotAllowed,
--<B-- IllegalSubscriber,--B>-- IllegalSubscriber,
--<B-- IllegalEquipment,--B>-- IllegalEquipment,
InvalidTargetBaseStation, InvalidTargetBaseStation,
NoRadioResourceAvailable, NoRadioResourceAvailable,
NoHandoverNumberAvailable, NoHandoverNumberAvailable,
SubsequentHandoverFailure--<B--,--B>-- SubsequentHandoverFailure,
--<B-- AbsentSubscriber,--B>-- AbsentSubscriber,
--<B-- BusySubscriber--B>-- BusySubscriber
FROM MAP-Errors { FROM MAP-Errors {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-Errors (10) version2 (2)} moduleId (3) map-Errors (10) version2 (2)}
--<B-- UpdateLocationAreaArg,--B>-- UpdateLocationAreaArg,
UpdateLocationArg, UpdateLocationArg,
UpdateLocationRes, UpdateLocationRes,
CancelLocationArg, CancelLocationArg,
PurgeMS-Arg, PurgeMS-Arg,
SendIdentificationRes, SendIdentificationRes,
--<B-- PageArg,--B>-- PageArg,
--<B-- SearchForMS-Arg,--B>-- SearchForMS-Arg,
--<B-- ProcessAccessRequestArg,--B>-- ProcessAccessRequestArg,
--<B-- ProcessAccessRequestRes,--B>-- ProcessAccessRequestRes,
PerformHO-Arg, PerformHO-Arg,
PerformHO-Res, PerformHO-Res,
PerformSubsequentHO-Arg, PerformSubsequentHO-Arg,
--<B-- AuthenticateArg,--B>-- AuthenticateArg,
SendAuthenticationInfoArg, SendAuthenticationInfoArg,
SendAuthenticationInfoRes, SendAuthenticationInfoRes,
--<B-- SRES,--B>-- SRES,
--<B-- SetCipheringModeArg,--B>-- SetCipheringModeArg,
CheckIMEI-Arg, CheckIMEI-Arg,
SendParametersArg, SendParametersArg,
SentParameterList, SentParameterList,
@ -120,13 +120,13 @@ FROM MAP-MS-DataTypes {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-MS-DataTypes (11) version2 (2)} moduleId (3) map-MS-DataTypes (11) version2 (2)}
--<B-- ISDN-AddressString,--B>-- ISDN-AddressString,
ExternalSignalInfo, ExternalSignalInfo,
--<B-- IMSI,--B>-- IMSI,
TMSI, TMSI,
--<B-- SubscriberId,--B>-- SubscriberId,
IMEI--<B--,--B>-- IMEI,
--<B-- LocAreaId--B>-- LocAreaId
FROM MAP-CommonDataTypes { FROM MAP-CommonDataTypes {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-CommonDataTypes (18) version2 (2)} moduleId (3) map-CommonDataTypes (18) version2 (2)}
@ -135,21 +135,21 @@ FROM MAP-CommonDataTypes {
-- location registration operations -- location registration operations
--<B--UpdateLocationArea ::= OPERATION --Timer m----B>-- UpdateLocationArea ::= OPERATION --Timer m--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- updateLocationAreaArg UpdateLocationAreaArg--B>-- updateLocationAreaArg UpdateLocationAreaArg
--<B-- RESULT zzzz-Empty NULL--B>-- RESULT zzzz-Empty NULL
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure,--B>-- SystemFailure,
--<B-- DataMissing,--B>-- DataMissing,
--<B-- -- NU1 DataMissing must not be used in version 1----B>-- -- NU1 DataMissing must not be used in version 1--
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- UnknownSubscriber,--B>-- UnknownSubscriber,
--<B-- UnknownLocArea,--B>-- UnknownLocArea,
--<B-- RoamingNotAllowed,--B>-- RoamingNotAllowed,
--<B-- IllegalSubscriber,--B>-- IllegalSubscriber,
--<B-- IllegalEquipment}--B>-- IllegalEquipment}
--<B-- -- NU1 IllegalEquipment must not be used in version 1----B>-- -- NU1 IllegalEquipment must not be used in version 1--
UpdateLocation ::= OPERATION --Timer m-- UpdateLocation ::= OPERATION --Timer m--
ARGUMENT ARGUMENT
@ -189,75 +189,75 @@ SendIdentification::= OPERATION --Timer s--
DataMissing, DataMissing,
UnidentifiedSubscriber} UnidentifiedSubscriber}
--<B--DetachIMSI ::= OPERATION --Timer s----B>-- DetachIMSI ::= OPERATION --Timer s--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- subscriberId SubscriberId--B>-- subscriberId SubscriberId
--<B--AttachIMSI ::= OPERATION --Timer s----B>-- AttachIMSI ::= OPERATION --Timer s--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- subscriberId SubscriberId--B>-- subscriberId SubscriberId
--<B-- RESULT zzzz-Empty NULL--B>-- RESULT zzzz-Empty NULL
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure,--B>-- SystemFailure,
--<B-- DataMissing,--B>-- DataMissing,
--<B-- -- NU1 DataMissing must not be used in version 1----B>-- -- NU1 DataMissing must not be used in version 1--
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- UnknownSubscriber,--B>-- UnknownSubscriber,
--<B-- UnidentifiedSubscriber,--B>-- UnidentifiedSubscriber,
--<B-- RoamingNotAllowed,--B>-- RoamingNotAllowed,
--<B-- IllegalSubscriber}--B>-- IllegalSubscriber}
-- paging management operations -- paging management operations
--<B--Page ::= OPERATION --Timer m----B>-- Page ::= OPERATION --Timer m--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- pageArg PageArg--B>-- pageArg PageArg
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure,--B>-- SystemFailure,
--<B-- DataMissing,--B>-- DataMissing,
--<B-- -- NU1 DataMissing must not be used in version 1----B>-- -- NU1 DataMissing must not be used in version 1--
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- UnknownLocArea,--B>-- UnknownLocArea,
--<B-- AbsentSubscriber,--B>-- AbsentSubscriber,
--<B-- BusySubscriber}--B>-- BusySubscriber}
--<B--SearchForMS ::= OPERATION --Timer m----B>-- SearchForMS ::= OPERATION --Timer m--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- searchForMS-Arg SearchForMS-Arg--B>-- searchForMS-Arg SearchForMS-Arg
--<B-- RESULT--B>-- RESULT
--<B-- currentLocAreaId LocAreaId--B>-- currentLocAreaId LocAreaId
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure,--B>-- SystemFailure,
--<B-- DataMissing,--B>-- DataMissing,
--<B-- -- NU1 DataMissing must not be used in version 1----B>-- -- NU1 DataMissing must not be used in version 1--
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- AbsentSubscriber,--B>-- AbsentSubscriber,
--<B-- BusySubscriber}--B>-- BusySubscriber}
-- access management operations -- access management operations
--<B--ProcessAccessRequest ::= OPERATION --Timer m----B>-- ProcessAccessRequest ::= OPERATION --Timer m--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- proccessAccessRequestArg ProcessAccessRequestArg--B>-- proccessAccessRequestArg ProcessAccessRequestArg
--<B-- RESULT--B>-- RESULT
--<B-- processAccessRequestRes ProcessAccessRequestRes--B>-- processAccessRequestRes ProcessAccessRequestRes
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure,--B>-- SystemFailure,
--<B-- DataMissing,--B>-- DataMissing,
--<B-- -- NU1 DataMissing must not be used in version 1----B>-- -- NU1 DataMissing must not be used in version 1--
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- UnknownSubscriber,--B>-- UnknownSubscriber,
--<B-- -- NU>1 UnknownSubscriber must not be used in version greater 1----B>-- -- NU>1 UnknownSubscriber must not be used in version greater 1--
--<B-- UnknownLocArea,--B>-- UnknownLocArea,
--<B-- -- NU1 UnknownLocArea must not be used in version 1----B>-- -- NU1 UnknownLocArea must not be used in version 1--
--<B-- UnidentifiedSubscriber,--B>-- UnidentifiedSubscriber,
--<B-- RoamingNotAllowed,--B>-- RoamingNotAllowed,
--<B-- -- NU1 RoamingNotAllowed must not be used in version 1----B>-- -- NU1 RoamingNotAllowed must not be used in version 1--
--<B-- IllegalSubscriber,--B>-- IllegalSubscriber,
--<B-- IllegalEquipment}--B>-- IllegalEquipment}
--<B-- -- NU1 IllegalEquipment must not be used in version 1----B>-- -- NU1 IllegalEquipment must not be used in version 1--
-- handover operations -- handover operations
@ -302,25 +302,25 @@ PerformSubsequentHandover ::= OPERATION --Timer m--
InvalidTargetBaseStation, InvalidTargetBaseStation,
SubsequentHandoverFailure} SubsequentHandoverFailure}
--<B--AllocateHandoverNumber ::= OPERATION --Timer s----B>-- AllocateHandoverNumber ::= OPERATION --Timer s--
--<B-- ERRORS {--B>-- ERRORS {
--<B-- NoHandoverNumberAvailable}--B>-- NoHandoverNumberAvailable}
--<B-- LINKED {--B>-- LINKED {
--<B-- SendHandoverReport}--B>-- SendHandoverReport}
--<B--SendHandoverReport ::= OPERATION --Timer l----B>-- SendHandoverReport ::= OPERATION --Timer l--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- handoverNumber ISDN-AddressString--B>-- handoverNumber ISDN-AddressString
--<B-- RESULT zzzz-Empty NULL--B>-- RESULT zzzz-Empty NULL
-- authentication management operations -- authentication management operations
--<B--Authenticate ::= OPERATION --Timer s----B>-- Authenticate ::= OPERATION --Timer s--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- authenticateArg AuthenticateArg--B>-- authenticateArg AuthenticateArg
--<B-- RESULT--B>-- RESULT
--<B-- sres SRES--B>-- sres SRES
SendAuthenticationInfo ::= OPERATION --Timer m-- SendAuthenticationInfo ::= OPERATION --Timer m--
ARGUMENT ARGUMENT
@ -336,9 +336,9 @@ SendAuthenticationInfo ::= OPERATION --Timer m--
-- security management operations -- security management operations
--<B--SetCipheringMode ::= OPERATION --Timer s----B>-- SetCipheringMode ::= OPERATION --Timer s--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- setCipheringModeArg SetCipheringModeArg--B>-- setCipheringModeArg SetCipheringModeArg
-- IMEI management operations -- IMEI management operations
@ -358,11 +358,11 @@ CheckIMEI ::= OPERATION --Timer m--
-- NU>1 UnexpectedDataValue must not be used in version greater 1 -- NU>1 UnexpectedDataValue must not be used in version greater 1
UnknownEquipment} UnknownEquipment}
--<B--ObtainIMEI ::= OPERATION --Timer s----B>-- ObtainIMEI ::= OPERATION --Timer s--
--<B-- RESULT--B>-- RESULT
--<B-- imei IMEI--B>-- imei IMEI
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure}--B>-- SystemFailure}
-- subscriber management operations -- subscriber management operations
@ -404,18 +404,18 @@ DeleteSubscriberData ::= OPERATION --Timer m--
-- identity management operations -- identity management operations
--<B--ProvideIMSI ::= OPERATION --Timer s----B>-- ProvideIMSI ::= OPERATION --Timer s--
--<B-- RESULT--B>-- RESULT
--<B-- imsi IMSI--B>-- imsi IMSI
--<B-- ERRORS {--B>-- ERRORS {
--<B-- DataMissing,--B>-- DataMissing,
--<B-- -- NU1 DataMissing must not be used in version 1----B>-- -- NU1 DataMissing must not be used in version 1--
--<B-- AbsentSubscriber}--B>-- AbsentSubscriber}
--<B--ForwardNewTMSI ::= OPERATION --Timer s----B>-- ForwardNewTMSI ::= OPERATION --Timer s--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- tmsi TMSI--B>-- tmsi TMSI
--<B-- RESULT zzzz-Empty NULL--B>-- RESULT zzzz-Empty NULL
-- fault recovery operations -- fault recovery operations

View File

@ -11,33 +11,33 @@ DEFINITIONS
BEGIN BEGIN
IMPORTS IMPORTS
--<B-- UpdateLocationArea,--B>-- UpdateLocationArea,
UpdateLocation, UpdateLocation,
CancelLocation, CancelLocation,
PurgeMS, PurgeMS,
SendIdentification, SendIdentification,
--<B-- DetachIMSI,--B>-- DetachIMSI,
--<B-- AttachIMSI,--B>-- AttachIMSI,
--<B-- Page,--B>-- Page,
--<B-- SearchForMS,--B>-- SearchForMS,
--<B-- ProcessAccessRequest,--B>-- ProcessAccessRequest,
PerformHandover, PerformHandover,
SendEndSignal, SendEndSignal,
ProcessAccessSignalling, ProcessAccessSignalling,
ForwardAccessSignalling, ForwardAccessSignalling,
PerformSubsequentHandover, PerformSubsequentHandover,
--<B-- AllocateHandoverNumber,--B>-- AllocateHandoverNumber,
--<B-- SendHandoverReport,--B>-- SendHandoverReport,
--<B-- Authenticate,--B>-- Authenticate,
SendAuthenticationInfo, SendAuthenticationInfo,
--<B-- SetCipheringMode,--B>-- SetCipheringMode,
CheckIMEI, CheckIMEI,
--<B-- ObtainIMEI,--B>-- ObtainIMEI,
SendParameters, SendParameters,
InsertSubscriberData, InsertSubscriberData,
DeleteSubscriberData, DeleteSubscriberData,
--<B-- ProvideIMSI,--B>-- ProvideIMSI,
--<B-- ForwardNewTMSI,--B>-- ForwardNewTMSI,
Reset, Reset,
ForwardCheckSS-Indication, ForwardCheckSS-Indication,
RestoreData RestoreData
@ -54,13 +54,13 @@ FROM MAP-OperationAndMaintenanceOperations {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-OperationAndMaintenanceOperations (6) version2 (2)} moduleId (3) map-OperationAndMaintenanceOperations (6) version2 (2)}
--<B-- SendInfoForIncomingCall,--B>-- SendInfoForIncomingCall,
--<B-- ConnectToFollowingAddress,--B>-- ConnectToFollowingAddress,
--<B-- ProcessCallWaiting,--B>-- ProcessCallWaiting,
--<B-- SendInfoForOutgoingCall,--B>-- SendInfoForOutgoingCall,
SendRoutingInfo, SendRoutingInfo,
ProvideRoamingNumber--<B--,--B>-- ProvideRoamingNumber,
--<B-- CompleteCall--B>-- CompleteCall
FROM MAP-CallHandlingOperations { FROM MAP-CallHandlingOperations {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-CallHandlingOperaations (7) version2 (2)} moduleId (3) map-CallHandlingOperaations (7) version2 (2)}
@ -70,7 +70,7 @@ FROM MAP-CallHandlingOperations {
ActivateSS, ActivateSS,
DeactivateSS, DeactivateSS,
InterrogateSS, InterrogateSS,
--<B-- InvokeSS,--B>-- InvokeSS,
ProcessUnstructuredSS-Data, ProcessUnstructuredSS-Data,
ProcessSS-Request, ProcessSS-Request,
SS-GetDigits, SS-GetDigits,
@ -89,8 +89,8 @@ FROM MAP-SupplementaryServiceOperations {
NoteSubscriberPresent, NoteSubscriberPresent,
AlertServiceCentre, AlertServiceCentre,
InformServiceCentre, InformServiceCentre,
--<B-- SendInfoForMT-SMS,--B>-- SendInfoForMT-SMS,
--<B-- SendInfoForMO-SMS,--B>-- SendInfoForMO-SMS,
ReadyForSM ReadyForSM
FROM MAP-ShortMessageServiceOperations { FROM MAP-ShortMessageServiceOperations {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
@ -104,9 +104,9 @@ FROM MAP-ShortMessageServiceOperations {
NumberChanged, NumberChanged,
UnknownBaseStation, UnknownBaseStation,
UnknownMSC, UnknownMSC,
--<B-- UnknownLocArea,--B>-- UnknownLocArea,
UnidentifiedSubscriber, UnidentifiedSubscriber,
--<B-- UnallocatedRoamingNumber,--B>-- UnallocatedRoamingNumber,
UnknownEquipment, UnknownEquipment,
RoamingNotAllowed, RoamingNotAllowed,
IllegalSubscriber, IllegalSubscriber,
@ -120,10 +120,10 @@ FROM MAP-ShortMessageServiceOperations {
TracingBufferFull, TracingBufferFull,
NoRoamingNumberAvailable, NoRoamingNumberAvailable,
AbsentSubscriber, AbsentSubscriber,
--<B-- BusySubscriber,--B>-- BusySubscriber,
--<B-- NoSubscriberReply,--B>-- NoSubscriberReply,
--<B-- RadioCongestion,--B>-- RadioCongestion,
--<B-- ImpossibleCallCompletion,--B>-- ImpossibleCallCompletion,
CallBarred, CallBarred,
ForwardingViolation, ForwardingViolation,
CUG-Reject, CUG-Reject,

View File

@ -16,7 +16,7 @@ EXPORTS
RoutingInfoForSM-Arg, RoutingInfoForSM-Arg,
RoutingInfoForSM-Res, RoutingInfoForSM-Res,
ForwardSM-Arg, ForwardSM-Arg,
--<B-- SM-RP-DA,--B>-- SM-RP-DA,
ReportSM-DeliveryStatusArg, ReportSM-DeliveryStatusArg,
AlertServiceCentreArg, AlertServiceCentreArg,
InformServiceCentreArg, InformServiceCentreArg,

View File

@ -14,10 +14,10 @@ BEGIN
EXPORTS EXPORTS
RegisterSS-Arg, RegisterSS-Arg,
--<B-- NoReplyConditionTime,--B>-- NoReplyConditionTime,
SS-Info, SS-Info,
SS-Status, SS-Status,
--<B-- CUG-Index,--B>-- CUG-Index,
CUG-Interlock, CUG-Interlock,
SS-SubscriptionOption, SS-SubscriptionOption,
SS-ForBS-Code, SS-ForBS-Code,
@ -35,7 +35,7 @@ EXPORTS
SS-List, SS-List,
SS-InfoList, SS-InfoList,
--<B-- SS-DataList,--B>-- SS-DataList,
ForwardingData ForwardingData
; ;
@ -306,8 +306,8 @@ maxNumOfSS INTEGER ::= 30
SS-InfoList ::= SEQUENCE SIZE (1..maxNumOfSS) OF SS-InfoList ::= SEQUENCE SIZE (1..maxNumOfSS) OF
SS-Info SS-Info
--<B--SS-DataList ::= SEQUENCE SIZE (1..maxNumOfSS) OF--B>-- SS-DataList ::= SEQUENCE SIZE (1..maxNumOfSS) OF
--<B-- SS-Data--B>-- SS-Data
ForwardingData ::= SEQUENCE { ForwardingData ::= SEQUENCE {
forwardedToNumber [5] ISDN-AddressString OPTIONAL, forwardedToNumber [5] ISDN-AddressString OPTIONAL,

View File

@ -17,8 +17,8 @@ EXPORTS
NoteSubscriberPresent, NoteSubscriberPresent,
AlertServiceCentre, AlertServiceCentre,
InformServiceCentre, InformServiceCentre,
--<B-- SendInfoForMT-SMS,--B>-- SendInfoForMT-SMS,
--<B-- SendInfoForMO-SMS,--B>-- SendInfoForMO-SMS,
ReadyForSM ReadyForSM
; ;
@ -46,7 +46,7 @@ FROM MAP-Errors {
RoutingInfoForSM-Arg, RoutingInfoForSM-Arg,
RoutingInfoForSM-Res, RoutingInfoForSM-Res,
ForwardSM-Arg, ForwardSM-Arg,
--<B-- SM-RP-DA,--B>-- SM-RP-DA,
ReportSM-DeliveryStatusArg, ReportSM-DeliveryStatusArg,
AlertServiceCentreArg, AlertServiceCentreArg,
InformServiceCentreArg, InformServiceCentreArg,
@ -55,7 +55,7 @@ FROM MAP-SM-DataTypes {
ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1) ccitt identified-organization (4) etsi (0) mobileDomainId (0) gsmNetworkId(1)
moduleId (3) map-SM-DataTypes (16) version2 (2)} moduleId (3) map-SM-DataTypes (16) version2 (2)}
--<B-- AddressString,--B>-- AddressString,
ISDN-AddressString, ISDN-AddressString,
IMSI IMSI
FROM MAP-CommonDataTypes { FROM MAP-CommonDataTypes {
@ -133,31 +133,31 @@ InformServiceCentre ::= OPERATION --Timer s--
ARGUMENT ARGUMENT
informServiceCentreArg InformServiceCentreArg informServiceCentreArg InformServiceCentreArg
--<B--SendInfoForMT-SMS ::= OPERATION --Timer s----B>-- SendInfoForMT-SMS ::= OPERATION --Timer s--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- sm-RP-DA SM-RP-DA--B>-- sm-RP-DA SM-RP-DA
--<B-- RESULT--B>-- RESULT
--<B-- msisdn ISDN-AddressString--B>-- msisdn ISDN-AddressString
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure,--B>-- SystemFailure,
--<B-- DataMissing,--B>-- DataMissing,
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- UnknownSubscriber,--B>-- UnknownSubscriber,
--<B-- UnidentifiedSubscriber,--B>-- UnidentifiedSubscriber,
--<B-- IllegalSubscriber,--B>-- IllegalSubscriber,
--<B-- IllegalEquipment,--B>-- IllegalEquipment,
--<B-- AbsentSubscriber}--B>-- AbsentSubscriber}
--<B--SendInfoForMO-SMS ::= OPERATION --Timer s----B>-- SendInfoForMO-SMS ::= OPERATION --Timer s--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- serviceCentreAddress AddressString--B>-- serviceCentreAddress AddressString
--<B-- RESULT--B>-- RESULT
--<B-- msisdn ISDN-AddressString--B>-- msisdn ISDN-AddressString
--<B-- ERRORS {--B>-- ERRORS {
--<B-- DataMissing,--B>-- DataMissing,
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- TeleserviceNotProvisioned,--B>-- TeleserviceNotProvisioned,
--<B-- CallBarred}--B>-- CallBarred}
ReadyForSM ::= OPERATION --Timer m-- ReadyForSM ::= OPERATION --Timer m--
ARGUMENT ARGUMENT

View File

@ -16,7 +16,7 @@ EXPORTS
ActivateSS, ActivateSS,
DeactivateSS, DeactivateSS,
InterrogateSS, InterrogateSS,
--<B-- InvokeSS,--B>-- InvokeSS,
ProcessUnstructuredSS-Data, ProcessUnstructuredSS-Data,
ProcessSS-Request, ProcessSS-Request,
SS-GetDigits, SS-GetDigits,
@ -196,19 +196,19 @@ InterrogateSS ::= OPERATION --Timer m--
SS-NotAvailable} SS-NotAvailable}
-- NU>1 SS-NotAvailable must not be used in version greater 1 -- NU>1 SS-NotAvailable must not be used in version greater 1
--<B--InvokeSS ::= OPERATION --Timer m----B>-- InvokeSS ::= OPERATION --Timer m--
--<B-- ARGUMENT--B>-- ARGUMENT
--<B-- ss-ForBS SS-ForBS-Code--B>-- ss-ForBS SS-ForBS-Code
--<B-- RESULT zzzz-Empty NULL--B>-- RESULT zzzz-Empty NULL
--<B-- ERRORS {--B>-- ERRORS {
--<B-- SystemFailure,--B>-- SystemFailure,
--<B-- DataMissing,--B>-- DataMissing,
--<B-- UnexpectedDataValue,--B>-- UnexpectedDataValue,
--<B-- CallBarred,--B>-- CallBarred,
--<B-- -- NU1 CallBarred must not be used in version 1----B>-- -- NU1 CallBarred must not be used in version 1--
--<B-- IllegalSS-Operation,--B>-- IllegalSS-Operation,
--<B-- SS-ErrorStatus,--B>-- SS-ErrorStatus,
--<B-- SS-NotAvailable}--B>-- SS-NotAvailable}
ProcessUnstructuredSS-Data ::= OPERATION --Timer m-- ProcessUnstructuredSS-Data ::= OPERATION --Timer m--
ARGUMENT ARGUMENT