aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/inap
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2007-06-03 19:58:59 +0000
committerAnders Broman <anders.broman@ericsson.com>2007-06-03 19:58:59 +0000
commit4393bceae595f7b1488ec4f38767a3da710349f0 (patch)
treed4185e9cdf8bade136e1324647bb1a81338bdd7b /asn1/inap
parenta6dab6d6447509270ccb10281f155e6b804a8b25 (diff)
INAP:
- Use (some) IN CS4 asn1 files Q.1248.1 Q.1248.2 Q.1248.3 BER/asn2wrs: - Add basic support for EmbeddedPDVType svn path=/trunk/; revision=22031
Diffstat (limited to 'asn1/inap')
-rw-r--r--asn1/inap/IN-SCF-SRF-Classes.asn94
-rw-r--r--asn1/inap/IN-SCF-SRF-datatypes.asn190
-rw-r--r--asn1/inap/IN-SCF-SRF-ops-args.asn281
-rw-r--r--asn1/inap/IN-SSF-SCF-Classes.asn298
-rw-r--r--asn1/inap/IN-SSF-SCF-datatypes.asn1436
-rw-r--r--asn1/inap/IN-SSF-SCF-ops-args.asn2359
-rw-r--r--asn1/inap/IN-common-classes.asn354
-rw-r--r--asn1/inap/IN-common-datatypes.asn42
-rw-r--r--asn1/inap/IN-object-identifiers.asn722
-rw-r--r--asn1/inap/Makefile8
-rw-r--r--asn1/inap/Makefile.nmake7
-rw-r--r--asn1/inap/inap.asn41
-rw-r--r--asn1/inap/inap.cnf46
-rw-r--r--asn1/inap/packet-inap-template.c2
14 files changed, 5851 insertions, 29 deletions
diff --git a/asn1/inap/IN-SCF-SRF-Classes.asn b/asn1/inap/IN-SCF-SRF-Classes.asn
new file mode 100644
index 0000000000..2698b8ff64
--- /dev/null
+++ b/asn1/inap/IN-SCF-SRF-Classes.asn
@@ -0,0 +1,94 @@
+-- $Id$
+-- Small modifications made to the original due to as2wrs shortfalls, to be corrected.
+-- Module IN-SCF-SRF-Classes (Q.1248.3:07/2001)
+IN-SCF-SRF-Classes {itu-t recommendation q 1248 modules(1)
+ in-scf-srf-classes(11) version1(0)} DEFINITIONS ::=
+BEGIN
+
+IMPORTS
+ id-package-emptyConnection, id-rosObject-srf, id-rosObject-ssf,
+ ros-InformationObjects, ros-UsefulDefinitions, scf-srf-Protocol,
+ scf-srf-datatypes, ssf-scf-datatypes
+ FROM IN-object-identifiers {itu-t recommendation q 1248 modules(1)
+ in-object-identifiers(0) version1(0)}
+ ROS-OBJECT-CLASS, CONTRACT, OPERATION-PACKAGE, Code, OPERATION,
+ CONNECTION-PACKAGE
+ FROM Remote-Operations-Information-Objects ros-InformationObjects
+ emptyBind, emptyUnbind
+ FROM Remote-Operations-Useful-Definitions ros-UsefulDefinitions;
+
+UISCRIPT ::= CLASS {
+ &SpecificInfo OPTIONAL,
+ &Result OPTIONAL,
+ &id Code
+}
+WITH SYNTAX {
+ [WITH-SPECIFICINFO &SpecificInfo]
+ [WITH-RESULT &Result]
+ IDENTIFIED BY &id
+}
+
+-- SpecificInfo is used for ScriptRun and ScriptInformation and ScriptClose
+--Result is used for ScritEvent
+firstScript UISCRIPT ::= {IDENTIFIED BY local:1
+}
+
+-- firstScript is just an example.
+SupportedUIScripts UISCRIPT ::=
+ {firstScript, ...
+ --full set of User Interaction script
+ }
+
+-- SupportedUIScripts is the full set of User Interaction scripts.
+SCF-SRF-BOUNDS ::= CLASS {
+ &minAttributesLength INTEGER OPTIONAL,
+ &maxAttributesLength INTEGER OPTIONAL,
+ &minMailBoxIDLength INTEGER OPTIONAL,
+ &maxMailBoxIDLength INTEGER OPTIONAL,
+ &minMessageContentLength INTEGER OPTIONAL,
+ &maxMessageContentLength INTEGER OPTIONAL,
+ &minReceivedInformationLength INTEGER OPTIONAL,
+ &maxReceivedInformationLength INTEGER OPTIONAL,
+ &maxRecordingTime INTEGER OPTIONAL,
+ &numOfMessageIDs INTEGER OPTIONAL,
+ &maxRecordedMessageUnits INTEGER OPTIONAL,
+ &maxVariableParts INTEGER OPTIONAL
+}
+WITH SYNTAX {
+ [MINIMUM-FOR-ATTRIBUTES &minAttributesLength]
+ [MAXIMUM-FOR-ATTRIBUTES &maxAttributesLength]
+ [MINIMUM-FOR-MAIL-BOX-ID &minMailBoxIDLength]
+ [MAXIMUM-FOR-MAIL-BOX-ID &maxMailBoxIDLength]
+ [MINIMUM-FOR-MESSAGE-CONTENT &minMessageContentLength]
+ [MAXIMUM-FOR-MESSAGE-CONTENT &maxMessageContentLength]
+ [MINIMUM-FOR-RECEIVED-INFORMATION &minReceivedInformationLength]
+ [MAXIMUM-FOR-RECEIVED-INFORMATION &maxReceivedInformationLength]
+ [MAXIMUM-FOR-RECORDING-TIME &maxRecordingTime]
+ [NUM-OF-MESSAGE-IDS &numOfMessageIDs]
+ [MAXIMUM-FOR-RECORDED-MESSAGE-UNITS &maxRecordedMessageUnits]
+ [NUM-OF-VARIABLE-PARTS &maxVariableParts]
+}
+
+-- The following instance of the parameter bound is just an example
+networkSpecificB3 SCF-SRF-BOUNDS ::= {
+ MINIMUM-FOR-ATTRIBUTES 1 -- example value
+ MAXIMUM-FOR-ATTRIBUTES 5 -- example value
+ MINIMUM-FOR-MAIL-BOX-ID 1 -- example value
+ MAXIMUM-FOR-MAIL-BOX-ID 5 -- example value
+ MINIMUM-FOR-MESSAGE-CONTENT 1 -- example value
+ MAXIMUM-FOR-MESSAGE-CONTENT 5 -- example value
+ MINIMUM-FOR-RECEIVED-INFORMATION 1 -- example value
+ MAXIMUM-FOR-RECEIVED-INFORMATION 5 -- example value
+ MAXIMUM-FOR-RECORDING-TIME 5 -- example value
+ NUM-OF-MESSAGE-IDS 2 -- example value
+ MAXIMUM-FOR-RECORDED-MESSAGE-UNITS 5 -- example value
+ NUM-OF-VARIABLE-PARTS 5 -- example value
+
+-- must be 5 or
+-- greater.
+}
+
+END
+
+-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
+
diff --git a/asn1/inap/IN-SCF-SRF-datatypes.asn b/asn1/inap/IN-SCF-SRF-datatypes.asn
new file mode 100644
index 0000000000..763aae1031
--- /dev/null
+++ b/asn1/inap/IN-SCF-SRF-datatypes.asn
@@ -0,0 +1,190 @@
+-- $Id$
+-- Small modifications made to the original due to as2wrs shortfalls, to be corrected.
+-- Module IN-SCF-SRF-datatypes (Q.1248.3:07/2001)
+IN-SCF-SRF-datatypes {itu-t recommendation q 1248 modules(1)
+ in-scf-srf-datatypes(10) version1(0)} DEFINITIONS IMPLICIT TAGS ::=
+BEGIN
+
+IMPORTS
+ tc-Messages, common-classes, common-datatypes, ssf-scf-classes,
+ scf-srf-classes, ssf-scf-datatypes, ros-InformationObjects
+ FROM IN-object-identifiers {itu-t recommendation q 1248 modules(1)
+ in-object-identifiers(0) version1(0)}
+ EXTENSION, SupportedExtensions, COMMON-BOUNDS
+ FROM IN-common-classes common-classes
+ Integer4
+ FROM IN-common-datatypes common-datatypes
+ Code
+ FROM Remote-Operations-Information-Objects ros-InformationObjects
+ Digits{}, DisplayInformation{}, SDSSinformation{}
+ FROM IN-SSF-SCF-datatypes ssf-scf-datatypes
+ SCF-SSF-BOUNDS
+ FROM IN-SSF-SCF-Classes ssf-scf-classes
+ SCF-SRF-BOUNDS
+ FROM IN-SCF-SRF-Classes scf-srf-classes;
+
+-- The following three definitions are local short-hand notation for convenience.
+-- B1 ::=
+-- COMMON-BOUNDS defined in Q.1248.1 (Part 1 of Recommendation Q.1248)
+
+--B2 ::= SCF-SSF-BOUNDS defined in Q.1248.2 (Part 2 of Recommendation Q.1248)
+
+-- B3 ::= SCF-SRF-BOUNDS defined in this Recommendation (Q.1248.3)
+
+CollectedDigits ::= SEQUENCE {
+ minimumNbOfDigits [0] INTEGER(1..127) DEFAULT 1,
+ maximumNbOfDigits [1] INTEGER(1..127),
+ endOfReplyDigit [2] OCTET STRING(SIZE (1..2)) OPTIONAL,
+ cancelDigit [3] OCTET STRING(SIZE (1..2)) OPTIONAL,
+ startDigit [4] OCTET STRING(SIZE (1..2)) OPTIONAL,
+ firstDigitTimeOut [5] INTEGER(1..127) OPTIONAL,
+ interDigitTimeOut [6] INTEGER(1..127) OPTIONAL,
+ errorTreatment [7] ErrorTreatment DEFAULT reportErrorToScf,
+ interruptableAnnInd [8] BOOLEAN DEFAULT TRUE,
+ voiceInformation [9] BOOLEAN DEFAULT FALSE,
+ voiceBack [10] BOOLEAN DEFAULT FALSE,
+ detectModem [11] BOOLEAN DEFAULT FALSE,
+ ...
+}
+
+-- The use of voiceBack is network operator specific.
+-- The endOfReplyDigit, cancelDigit, and startDigit parameters have been designated as OCTET STRING,
+-- and are to be encoded as BCD, one digit per octet only, contained
+-- in the four least significant bits of each OCTET. The usage is service dependent.
+CollectedInfo ::= CHOICE {
+ collectedDigits [0] CollectedDigits,
+ iA5Information [1] BOOLEAN,
+ detectModem [2] BOOLEAN
+}
+
+ElementaryMessageID ::= Integer4
+
+ErrorTreatment ::= ENUMERATED {reportErrorToScf(0), help(1), repeatPrompt(2)}
+
+-- reportErrorToScf means returning the "ImproperCallerResponse" error in the event of an error
+-- condition during collection of user info.
+GapOnResource ::=
+ Code
+
+InbandInfo--{B2:b2, B3:b3} -- ::= SEQUENCE {
+ messageID [0] MessageID{b2, b3},
+ numberOfRepetitions [1] INTEGER(1..127) OPTIONAL,
+ duration [2] INTEGER(0..32767) OPTIONAL,
+ interval [3] INTEGER(0..32767) OPTIONAL,
+ preferredLanguage [4] Language OPTIONAL,
+ ...
+}
+
+-- Interval is the time in seconds between each repeated announcement. Duration is the total
+-- amount of time in seconds, including repetitions and intervals.
+-- The end of announcement is either the end of duration or numberOfRepetitions, whatever comes first.
+-- duration with value 0 indicates infinite duration
+InformationToRecord{B3:b3} ::= SEQUENCE {
+ messageID [0] ElementaryMessageID OPTIONAL,
+ messageDeletionTimeOut [1] INTEGER(1..3600) OPTIONAL,
+ --Time units = hours
+ timeToRecord [3] INTEGER(0..--b3.&--maxRecordingTime) OPTIONAL,
+ --Time units = seconds
+ controlDigits
+ [4] SEQUENCE {endOfRecordingDigit
+ [0] OCTET STRING(SIZE (1..2)) OPTIONAL,
+ cancelDigit
+ [1] OCTET STRING(SIZE (1..2)) OPTIONAL,
+ replayDigit
+ [2] OCTET STRING(SIZE (1..2)) OPTIONAL,
+ restartRecordingDigit
+ [3] OCTET STRING(SIZE (1..2)) OPTIONAL,
+ restartAllowed [4] BOOLEAN DEFAULT FALSE,
+ replayAllowed [5] BOOLEAN DEFAULT FALSE,
+ ...},
+ ...
+}
+
+InformationToSend--{B2:b2, B3:b3} -- ::= CHOICE {
+ inbandInfo [0] InbandInfo{b2, b3},
+ tone [1] Tone,
+ displayInformation [2] DisplayInformation{b2},
+ sDSSinformation [3] SDSSinformation{b2}
+}
+
+Language ::= PrintableString(SIZE (3)) -- ISO 639 codes only;
+
+
+MailBoxID{B3:b3} ::=
+ OCTET STRING(SIZE (--b3.&--minMailBoxIDLength..--b3.&--maxMailBoxIDLength))
+
+Media ::= ENUMERATED {voiceMail(0), faxGroup3(1), faxGroup4(2)}
+
+MessageID--{B2:b2, B3:b3} -- ::= CHOICE {
+ elementaryMessageID [0] Integer4,
+ text
+ [1] SEQUENCE {messageContent
+ [0] IA5String
+ (SIZE (--b3.&--minMessageContentLength..
+ --b3.&--maxMessageContentLength)),
+ attributes
+ [1] OCTET STRING
+ (SIZE (--b3.&--minAttributesLength..
+ --b3.&--maxAttributesLength)) OPTIONAL,
+ ...},
+ elementaryMessageIDs
+ [29] SEQUENCE SIZE (1..--b3.&--numOfMessageIDs) OF Integer4,
+ variableMessage
+ [30] SEQUENCE {elementaryMessageID [0] Integer4,
+ variableParts
+ [1] SEQUENCE SIZE (1..--b3.&--maxVariableParts) OF
+ VariablePart{b2},
+ ...}
+}
+
+-- OPTIONAL denotes network operator specific use.
+ReceivedStatus ::= ENUMERATED {
+ messageComplete(0), messageInterrupted(1), messageTimeOut(2)}
+
+RecordedMessageID ::= Integer4
+
+SRFGapCriteria{B2:b2} ::= CHOICE {
+ iPAddressValue [1] Digits{b2},
+ gapOnResource [2] GapOnResource,
+ iPAddressAndresource
+ [3] SEQUENCE {iPAddressValue [1] Digits{b2},
+ gapOnResource [2] GapOnResource,
+ ...}
+}
+
+Tone ::= SEQUENCE {
+ toneID [0] Integer4,
+ duration [1] Integer4 OPTIONAL,
+ ...
+}
+
+-- The duration specifies the length of the tone in seconds, value 0 indicates infinite duration.
+VariablePart{B2:b2} ::= CHOICE {
+ integer [0] Integer4,
+ number [1] Digits{b2}, -- Generic digits
+ time [2] OCTET STRING(SIZE (2)), -- HH:MM, BCD coded
+ date [3] OCTET STRING(SIZE (3)), -- YYMMDD, BCD coded
+ price [4] OCTET STRING(SIZE (4))
+}
+
+-- Indicates the variable part of the message.
+-- BCD coded variable parts are encoded as described in the examples below.
+-- For example, time = 12:15 would be encoded as:
+-- Bits HGFE DCBA
+-- leading octet 2 1
+-- 5 1
+-- date = 1993 September 30th would be encoded as:
+-- Bits HGFE DCBA
+-- leading octet 3 9
+-- 9 0
+-- 0 3
+-- For a system operating when or after this Recommendation is released, the 2-digit value
+-- representing a Year shall be interpreted as follows:
+-- - If the two-digits value is 00 through 49 inclusive, it shall be interpreted as representing
+-- year 2000 through 2049.
+-- - If the two-digits value is 50 through 99 inclusive, it shall be interpreted as representing
+-- year 1950 through 1999.
+END
+
+-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
+
diff --git a/asn1/inap/IN-SCF-SRF-ops-args.asn b/asn1/inap/IN-SCF-SRF-ops-args.asn
new file mode 100644
index 0000000000..579837b54c
--- /dev/null
+++ b/asn1/inap/IN-SCF-SRF-ops-args.asn
@@ -0,0 +1,281 @@
+-- $Id$
+-- Small modifications made to the original due to as2wrs shortfalls, to be corrected.
+-- Module IN-SCF-SRF-ops-args (Q.1248.3:07/2001)
+IN-SCF-SRF-ops-args {itu-t recommendation q 1248 modules(1)
+ in-scf-srf-ops-args(12) version1(0)} DEFINITIONS IMPLICIT TAGS ::=
+BEGIN
+
+IMPORTS
+ ros-InformationObjects, operationcodes, common-datatypes, errortypes,
+ common-classes, scf-srf-classes, ssf-scf-classes, ssf-scf-datatypes,
+ scf-srf-datatypes
+ FROM IN-object-identifiers {itu-t recommendation q 1248 modules(1)
+ in-object-identifiers(0) version1(0)}
+ OPERATION
+ FROM Remote-Operations-Information-Objects ros-InformationObjects
+ opcode-playAnnouncement, opcode-promptAndCollectUserInformation,
+ opcode-promptAndReceiveMessage, opcode-scriptClose, opcode-scriptEvent,
+ opcode-scriptInformation, opcode-scriptRun,
+ opcode-specializedResourceReport, opcode-activityTest, opcode-srfCallGap
+ FROM IN-operationcodes operationcodes
+ SCF-SSF-BOUNDS
+ FROM IN-SSF-SCF-Classes ssf-scf-classes
+ CallSegmentID{}, Digits{}, GenericNumber{}, LegID, ControlType, GapIndicators
+ FROM IN-SSF-SCF-datatypes ssf-scf-datatypes
+ InformationToSend{}, CollectedInfo, MailBoxID{}, InformationToRecord{},
+ Media, ReceivedStatus, RecordedMessageID, SRFGapCriteria{}
+ FROM IN-SCF-SRF-datatypes scf-srf-datatypes
+ canceled, improperCallerResponse, missingParameter, parameterOutOfRange,
+ systemFailure, taskRefused, unavailableResource,
+ unexpectedComponentSequence, unexpectedDataValue, unexpectedParameter,
+ unknownLegID
+ FROM IN-errortypes errortypes
+ UISCRIPT, SupportedUIScripts, SCF-SRF-BOUNDS
+ FROM IN-SCF-SRF-Classes scf-srf-classes
+ Extensions{}
+ FROM IN-common-datatypes common-datatypes
+ COMMON-BOUNDS
+ FROM IN-common-classes common-classes;
+
+-- The following three definitions are local short-hand notation for convenience.
+--B1 ::=
+-- COMMON-BOUNDS defined in Q.1248.1 (Part 1 of Recommendation Q.1248)
+
+--B2 ::= SCF-SSF-BOUNDS defined in Q.1248.2 (Part 2 of Recommendation Q.1248)
+
+--B3 ::= SCF-SRF-BOUNDS defined in this Recommendation (Q.1248.3)
+
+-- activityTest OPERATION
+-- This operation is described in Recommendation Q.1248.2.
+-- assistRequestInstructions OPERATION
+-- This operation is described in Recommendation Q.1248.2.
+--cancel OPERATION
+-- This operation is described in Recommendation Q.1248.2.
+playAnnouncement--{B1:b1, B2:b2, B3:b3}-- OPERATION ::= {
+ ARGUMENT PlayAnnouncementArg {b1,
+ b2,
+ b3}
+ RETURN RESULT FALSE
+ ERRORS
+ {canceled | missingParameter | parameterOutOfRange | systemFailure |
+ taskRefused | unexpectedComponentSequence | unexpectedDataValue |
+ unexpectedParameter | unavailableResource | unknownLegID}
+ LINKED {specializedResourceReport}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-playAnnouncement
+}
+
+-- Direction: SCF -> SRF, Timer: Tpa
+-- This operation is to be used after Establish Temporary Connection (assist procedure with a second SSP)
+-- or a Connect to Resource (no assist) operation. It may be used for inband interaction with an analogue user,
+-- or for interaction with an ISDN user. In the former case, the SRF is usually collocated with the SSF for
+-- standard tones (congestion tone ...) or standard announcements. In the latter case, the SRF is always
+-- collocated with the SSF in the switch. Any error is returned to the SCF. The timer associated with this
+-- operation must be of a sufficient duration to allow its linked operation to be correctly correlated.
+PlayAnnouncementArg--{B1:b1, B2:b2, B3:b3}-- ::= SEQUENCE {
+ informationToSend [0] InformationToSend{b2, b3},
+ disconnectFromIPForbidden [1] BOOLEAN DEFAULT TRUE,
+ requestAnnouncementComplete [2] BOOLEAN DEFAULT TRUE,
+ extensions [3] Extensions{b1} OPTIONAL,
+ connectedParty
+ CHOICE {legID [4] LegID,
+ callSegmentID [5] CallSegmentID{b2}} OPTIONAL,
+ ...
+}
+
+promptAndCollectUserInformation--{B1:b1, B2:b2, B3:b3}-- OPERATION ::= {
+ ARGUMENT PromptAndCollectUserInformationArg {b1,
+ b2,
+ b3}
+ RESULT ReceivedInformationArg {b2}
+ ERRORS
+ {canceled | improperCallerResponse | missingParameter | parameterOutOfRange
+ | systemFailure | taskRefused | unexpectedComponentSequence |
+ unavailableResource | unexpectedDataValue | unexpectedParameter}
+ CODE opcode-promptAndCollectUserInformation
+}
+
+-- Direction: SCF -> SRF, Timer: Tpc
+-- This operation is used to interact with a user to collect information.
+PromptAndCollectUserInformationArg--{B1:b1, B2:b2, B3:b3}-- ::= SEQUENCE {
+ collectedInfo [0] CollectedInfo,
+ disconnectFromIPForbidden [1] BOOLEAN DEFAULT TRUE,
+ informationToSend [2] InformationToSend{b2, b3} OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ callSegmentID [4] CallSegmentID{b2} OPTIONAL,
+ ...
+}
+
+ReceivedInformationArg{B2:b2} ::= CHOICE {
+ digitsResponse [0] Digits{b2},
+ iA5Response [1] IA5String,
+ modemdetected [2] BOOLEAN
+}
+
+promptAndReceiveMessage--{B1:b1, B2:b2, B3:b3}-- OPERATION ::= {
+ ARGUMENT PromptAndReceiveMessageArg {b1,
+ b2,
+ b3}
+ RESULT MessageReceivedArg {b1,
+ b3}
+ ERRORS
+ {canceled | improperCallerResponse | missingParameter | parameterOutOfRange
+ | taskRefused | systemFailure | unavailableResource |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ CODE opcode-promptAndReceiveMessage
+}
+
+-- Direction: SCF ->SRF, Timer: Tprm
+-- Used to prompt a user to store a message
+PromptAndReceiveMessageArg--{B1:b1, B2:b2, B3:b3}-- ::= SEQUENCE {
+ disconnectFromIPForbidden [0] BOOLEAN DEFAULT TRUE,
+ informationToSend [1] InformationToSend{b2, b3} OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ subscriberID [4] GenericNumber{b2} OPTIONAL,
+ mailBoxID [5] MailBoxID{b3} OPTIONAL,
+ informationToRecord [6] InformationToRecord{b3},
+ media [7] Media DEFAULT voiceMail,
+ callSegmentID [8] CallSegmentID{b2} OPTIONAL,
+ ...
+}
+
+MessageReceivedArg{B1:b1, B3:b3} ::= SEQUENCE {
+ receivedStatus [0] ReceivedStatus,
+ recordedMessageID [1] RecordedMessageID OPTIONAL,
+ recordedMessageUnits [2] INTEGER(1..--b3.&--maxRecordedMessageUnits) OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- reportUTSI OPERATION
+-- This operation is described in Recommendation Q.1248.2.
+-- requestReportUTSI OPERATION
+-- This operation is described in Recommendation Q.1248.2.
+-- sendSTUI OPERATION
+-- This operation is described in Recommendation Q.1248.2.
+scriptClose--{B1:b1, B2:b2}-- OPERATION ::= {
+ ARGUMENT ScriptCloseArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {systemFailure | missingParameter | taskRefused | unavailableResource |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-scriptClose
+}
+
+-- Direction:SCF-> SRF. Timer :TCl
+-- This operation is issued by the SCF to deallocate the resources used to perform the
+-- instance of the "User Interaction" script: the context is released.
+ScriptCloseArg--{B1:b1, B2:b2}-- ::= SEQUENCE {
+ uIScriptId UISCRIPT.&id({SupportedUIScripts}),
+ uIScriptSpecificInfo
+ [0] UISCRIPT.&SpecificInfo({SupportedUIScripts}{@uIScriptId}) OPTIONAL,
+ extensions [1] Extensions{b1} OPTIONAL,
+ callSegmentID [2] CallSegmentID{b2} OPTIONAL,
+ ...
+}
+
+scriptEvent--{B1:b1, B2:b2}-- OPERATION ::= {
+ ARGUMENT ScriptEventArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-scriptEvent
+}
+
+-- Direction:SRF-> SCF. Timer :TRe
+-- This operation is issued by the SRF to return information to the SCF on the results of the
+-- execution of the instance of User Interaction script.
+ScriptEventArg--{B1:b1, B2:b2}-- ::= SEQUENCE {
+ uIScriptId UISCRIPT.&id({SupportedUIScripts}),
+ uIScriptResult
+ [0] UISCRIPT.&Result({SupportedUIScripts}{@uIScriptId}) OPTIONAL,
+ extensions [1] Extensions{b1} OPTIONAL,
+ callSegmentID [2] CallSegmentID{b2} OPTIONAL,
+ lastEventIndicator [3] BOOLEAN DEFAULT FALSE,
+ ...
+}
+
+scriptInformation--{B1:b1, B2:b2}-- OPERATION ::= {
+ ARGUMENT ScriptInformationArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {systemFailure | missingParameter | taskRefused | unavailableResource |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-scriptInformation
+}
+
+-- Direction:SCF-> SRF. Timer :Tinf
+ScriptInformationArg--{B1:b1, B2:b2}-- ::= SEQUENCE {
+ uIScriptId UISCRIPT.&id({SupportedUIScripts}),
+ uIScriptSpecificInfo
+ [0] UISCRIPT.&SpecificInfo({SupportedUIScripts}{@uIScriptId}) OPTIONAL,
+ extensions [1] Extensions{b1} OPTIONAL,
+ callSegmentID [2] CallSegmentID{b2} OPTIONAL,
+ ...
+}
+
+scriptRun--{B1:b1, B2:b2}-- OPERATION ::= {
+ ARGUMENT ScriptRunArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {systemFailure | missingParameter | taskRefused | unavailableResource |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-scriptRun
+}
+
+-- Direction:SCF-> SRF. Timer :Tru
+-- This operation is issued by the SCF to allocate the necessary resources to perform the
+-- instance of the "User Interaction" script and then to activate this "User Interaction" script
+-- instance. A context is partially defined for it if necessary.
+ScriptRunArg--{B1:b1, B2:b2}-- ::= SEQUENCE {
+ uIScriptId UISCRIPT.&id({SupportedUIScripts}),
+ uIScriptSpecificInfo
+ [0] UISCRIPT.&SpecificInfo({SupportedUIScripts}{@uIScriptId}) OPTIONAL,
+ extensions [1] Extensions{b1} OPTIONAL,
+ disconnectFromIPForbidden [2] BOOLEAN DEFAULT TRUE,
+ callSegmentID [3] CallSegmentID{b2} OPTIONAL,
+ ...
+}
+
+specializedResourceReport OPERATION ::= {
+ ARGUMENT SpecializedResourceReportArg
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-specializedResourceReport
+}
+
+-- Direction: SRF -> SCF, Timer: Tsrr
+-- This operation is used as the response to a PlayAnnouncement operation when the announcement completed
+-- report indication is set.
+SpecializedResourceReportArg ::= NULL
+
+sRFCallGap--{B1:b1, B2:b2}-- OPERATION ::= {
+ ARGUMENT SRFCallGapArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-srfCallGap
+}
+
+-- Direction: SRF -> SCF, Timer: Tcg
+-- This operation is used to request the SCF to reduce the rate at which specific service requests are sent to
+-- the SRF.
+SRFCallGapArg--{B1:b1, B2:b2}-- ::= SEQUENCE {
+ sRFgapCriteria [0] SRFGapCriteria{b2},
+ gapIndicators [1] GapIndicators,
+ controlType [2] ControlType OPTIONAL,
+ ...,
+-- ...,
+ extensions [30] Extensions{b1} OPTIONAL
+}
+
+END
+
+-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
+
diff --git a/asn1/inap/IN-SSF-SCF-Classes.asn b/asn1/inap/IN-SSF-SCF-Classes.asn
new file mode 100644
index 0000000000..624677df82
--- /dev/null
+++ b/asn1/inap/IN-SSF-SCF-Classes.asn
@@ -0,0 +1,298 @@
+-- $Id: IN-CS-1-Datatypes.asn 22021 2007-06-01 19:52:26Z etxrab $
+-- Small modifications made to the original due to as2wrs shortfalls, to be corrected.
+-- Module IN-SSF-SCF-Classes (Q.1248.2:07/2001)
+IN-SSF-SCF-Classes {itu-t recommendation q 1248 modules(1)
+ in-ssf-scf-classes(7) version1(0)} DEFINITIONS ::=
+BEGIN
+
+TRIGGER ::= CLASS {&Parameter OPTIONAL,
+ &id INTEGER UNIQUE
+}WITH SYNTAX {[PARAMETER &Parameter]
+ IDENTIFIED BY &id
+}
+
+--The &id field uniquely identifies a class of triggers.
+--The &Parameter field defines the ASN.1 type for representing specific parameters
+-- (e.g. criteria, scfAddress, ...)
+--associated with this class of triggers.
+SCF-SSF-BOUNDS ::= CLASS {
+ &highLayerCompatibilityLength INTEGER OPTIONAL,
+ &minAChBillingChargingLength INTEGER OPTIONAL,
+ &maxAChBillingChargingLength INTEGER OPTIONAL,
+ &minBackwardGVNSLength INTEGER OPTIONAL,
+ &maxBackwardGVNSLength INTEGER OPTIONAL,
+ &maxBearerCapabilityLength INTEGER OPTIONAL,
+ &minCalledDirectoryNumberLength INTEGER OPTIONAL,
+ &maxCalledDirectoryNumberLength INTEGER OPTIONAL,
+ &minCalledPartyNumberLength INTEGER OPTIONAL,
+ &maxCalledPartyNumberLength INTEGER OPTIONAL,
+ &minCalledPartySubaddressLength INTEGER OPTIONAL,
+ &maxCalledPartySubaddressLength INTEGER OPTIONAL,
+ &minCallingGeodeticLocationLength INTEGER OPTIONAL,
+ &maxCallingGeodeticLocationLength INTEGER OPTIONAL,
+ &minCallingPartyNumberLength INTEGER OPTIONAL,
+ &maxCallingPartyNumberLength INTEGER OPTIONAL,
+ &minCallingPartySubaddressLength INTEGER OPTIONAL,
+ &maxCallingPartySubaddressLength INTEGER OPTIONAL,
+ &minCallResultLength INTEGER OPTIONAL,
+ &maxCallResultLength INTEGER OPTIONAL,
+ &maxCallReferenceLength INTEGER OPTIONAL,
+ &minCarrierLength INTEGER OPTIONAL,
+ &maxCarrierLength INTEGER OPTIONAL,
+ &minCauseLength INTEGER OPTIONAL,
+ &maxCauseLength INTEGER OPTIONAL,
+ &maxCNInfoLength INTEGER OPTIONAL,
+ &minDestinationIndexLength INTEGER OPTIONAL,
+ &maxDestinationIndexLength INTEGER OPTIONAL,
+ &minDigitsLength INTEGER OPTIONAL,
+ &maxDigitsLength INTEGER OPTIONAL,
+ &minDisplayInformationLength INTEGER OPTIONAL,
+ &maxDisplayInformationLength INTEGER OPTIONAL,
+ &minEventSpecificInformationChargingLength INTEGER OPTIONAL,
+ &maxEventSpecificInformationChargingLength INTEGER OPTIONAL,
+ &minEventTypeChargingLength INTEGER OPTIONAL,
+ &maxEventTypeChargingLength INTEGER OPTIONAL,
+ &minFCIBillingChargingLength INTEGER OPTIONAL,
+ &maxFCIBillingChargingLength INTEGER OPTIONAL,
+ &minForwardGVNSLength INTEGER OPTIONAL,
+ &maxForwardGVNSLength INTEGER OPTIONAL,
+ &minGenericNameLength INTEGER OPTIONAL,
+ &maxGenericNameLength INTEGER OPTIONAL,
+ &minGenericNumberLength INTEGER OPTIONAL,
+ &maxGenericNumberLength INTEGER OPTIONAL,
+ &maxInitialTimeInterval INTEGER OPTIONAL,
+ &maxINServiceCompatibilityIndLength INTEGER OPTIONAL,
+ &minIPAvailableLength INTEGER OPTIONAL,
+ &maxIPAvailableLength INTEGER OPTIONAL,
+ &minIPSSPCapabilitiesLength INTEGER OPTIONAL,
+ &maxIPSSPCapabilitiesLength INTEGER OPTIONAL,
+ &minISDNAccessRelatedInfoLength INTEGER OPTIONAL,
+ &maxISDNAccessRelatedInfoLength INTEGER OPTIONAL,
+ &minLocationNumberLength INTEGER OPTIONAL,
+ &maxLocationNumberLength INTEGER OPTIONAL,
+ &maxNbOfRoutes INTEGER OPTIONAL,
+ &minMidCallControlInfoNum INTEGER OPTIONAL,
+ &maxMidCallControlInfoNum INTEGER OPTIONAL,
+ &minOriginalCalledPartyIDLength INTEGER OPTIONAL,
+ &maxOriginalCalledPartyIDLength INTEGER OPTIONAL,
+ &minReasonLength INTEGER OPTIONAL,
+ &maxReasonLength INTEGER OPTIONAL,
+ &minRedirectingPartyIDLength INTEGER OPTIONAL,
+ &maxRedirectingPartyIDLength INTEGER OPTIONAL,
+ &minRequestedUTSINum INTEGER OPTIONAL,
+ &maxRequestedUTSINum INTEGER OPTIONAL,
+ &minRouteListLength INTEGER OPTIONAL,
+ &maxRouteListLength INTEGER OPTIONAL,
+ &minRouteingNumberLength INTEGER OPTIONAL,
+ &maxRouteingNumberLength INTEGER OPTIONAL,
+ &minScfIDLength INTEGER OPTIONAL,
+ &maxScfIDLength INTEGER OPTIONAL,
+ &minSCIBillingChargingLength INTEGER OPTIONAL,
+ &maxSCIBillingChargingLength INTEGER OPTIONAL,
+ &minSDSSinformationLength INTEGER OPTIONAL,
+ &maxSDSSinformationLength INTEGER OPTIONAL,
+ &minServiceInteractionIndicatorsLength INTEGER OPTIONAL,
+ &maxServiceInteractionIndicatorsLength INTEGER OPTIONAL,
+ &minSFBillingChargingLength INTEGER OPTIONAL,
+ &maxSFBillingChargingLength INTEGER OPTIONAL,
+ &minUSIInformationLength INTEGER OPTIONAL,
+ &maxUSIInformationLength INTEGER OPTIONAL,
+ &minUSIServiceIndicatorLength INTEGER OPTIONAL,
+ &maxUSIServiceIndicatorLength INTEGER OPTIONAL,
+ &numOfBCSMEvents INTEGER OPTIONAL,
+ &numOfBCUSMEvents INTEGER OPTIONAL,
+ &numOfChargingEvents INTEGER OPTIONAL,
+ &numOfCounters INTEGER OPTIONAL,
+ &numOfCSAs INTEGER OPTIONAL,
+ &numOfCSs INTEGER OPTIONAL,
+ &numOfGenericNumbers INTEGER OPTIONAL,
+ &numOfInfoItems INTEGER OPTIONAL,
+ &numOfInServiceCompatibilityIndLength INTEGER OPTIONAL,
+ &numOfLegs INTEGER OPTIONAL,
+ &numOfMessageIDs INTEGER OPTIONAL,
+ &maxAmount INTEGER OPTIONAL,
+ &maxInitialUnitIncrement INTEGER OPTIONAL,
+ &maxScalingFactor INTEGER OPTIONAL,
+ &maxSegmentsPerDataInterval INTEGER OPTIONAL,
+ &ub-nbCall INTEGER OPTIONAL,
+ &numOfAddresses INTEGER OPTIONAL,
+ &numOfINProfile INTEGER OPTIONAL,
+ &numOfTriggers INTEGER OPTIONAL,
+ &minAALPLength INTEGER OPTIONAL,
+ &maxAALPLength INTEGER OPTIONAL,
+ &minAdditionalATMCellRateLength INTEGER OPTIONAL,
+ &maxAdditionalATMCellRateLength INTEGER OPTIONAL,
+ &minAESACalledPartyLength INTEGER OPTIONAL,
+ &maxAESACalledPartyLength INTEGER OPTIONAL,
+ &minAESACallingPartyLength INTEGER OPTIONAL,
+ &maxAESACallingPartyLength INTEGER OPTIONAL,
+ &minATMCellRateLength INTEGER OPTIONAL,
+ &maxATMCellRateLength INTEGER OPTIONAL,
+ &minCDVTDescriptorLength INTEGER OPTIONAL,
+ &maxCDVTDescriptorLength INTEGER OPTIONAL,
+ &minConnectionIdentifierLength INTEGER OPTIONAL,
+ &maxConnectionIdentifierLength INTEGER OPTIONAL,
+ &minCumulativeTransitDelayLength INTEGER OPTIONAL,
+ &maxCumulativeTransitDelayLength INTEGER OPTIONAL,
+ &minEndToEndTDLength INTEGER OPTIONAL,
+ &maxEndToEndTDLength INTEGER OPTIONAL,
+ &minGenericIdentifierLength INTEGER OPTIONAL,
+ &maxGenericIdentifierLength INTEGER OPTIONAL,
+ &minMinAcceptableATMTrafficDescriptorLength INTEGER OPTIONAL,
+ &maxMinAcceptableATMTrafficDescriptorLength INTEGER OPTIONAL,
+ &minAlternativeATMTrafficDescriptorLength INTEGER OPTIONAL,
+ &maxAlternativeATMTrafficDescriptorLength INTEGER OPTIONAL,
+ &minQoSParameterLength INTEGER OPTIONAL,
+ &maxQoSParameterLength INTEGER OPTIONAL,
+ &minBroadbandBearerCapabilityLength INTEGER OPTIONAL,
+ &maxBroadbandBearerCapabilityLength INTEGER OPTIONAL,
+ &maxGlobalCallReferenceLength INTEGER OPTIONAL,
+ &maxAlternativeIdentities INTEGER OPTIONAL,
+ &maxAlternativeIds INTEGER OPTIONAL
+}
+WITH SYNTAX {
+ [HIGH-LAYER-COMPATIBILITY-LENGTH &highLayerCompatibilityLength]
+ [MINIMUM-FOR-ACH-BILLING-CHARGING &minAChBillingChargingLength]
+ [MAXIMUM-FOR-ACH-BILLING-CHARGING &maxAChBillingChargingLength]
+ [MINIMUM-FOR-BACKWARD-GVNS &minBackwardGVNSLength]
+ [MAXIMUM-FOR-BACKWARD-GVNS &maxBackwardGVNSLength]
+ [MAXIMUM-FOR-BEARER-CAPABILITY &maxBearerCapabilityLength]
+ [MINIMUM-FOR-CALLED-DIRECTORY-NUMBER &minCalledDirectoryNumberLength]
+ [MAXIMUM-FOR-CALLED-DIRECTORY-NUMBER &maxCalledDirectoryNumberLength]
+ [MINIMUM-FOR-CALLED-PARTY-NUMBER &minCalledPartyNumberLength]
+ [MAXIMUM-FOR-CALLED-PARTY-NUMBER &maxCalledPartyNumberLength]
+ [MINIMUM-FOR-CALLED-PARTY-SUBADDRESS &minCalledPartySubaddressLength]
+ [MAXIMUM-FOR-CALLED-PARTY-SUBADDRESS &maxCalledPartySubaddressLength]
+ [MINIMUM-FOR-CALLING-GEODETIC-LOCATION &minCallingGeodeticLocationLength]
+ [MAXIMUM-FOR-CALLING-GEODETIC-LOCATION &maxCallingGeodeticLocationLength]
+ [MINIMUM-FOR-CALLING-PARTY-NUMBER &minCallingPartyNumberLength]
+ [MAXIMUM-FOR-CALLING-PARTY-NUMBER &maxCallingPartyNumberLength]
+ [MINIMUM-FOR-CALLING-PARTY-SUBADDRESS &minCallingPartySubaddressLength]
+ [MAXIMUM-FOR-CALLING-PARTY-SUBADDRESS &maxCallingPartySubaddressLength]
+ [MINIMUM-FOR-CALL-RESULT &minCallResultLength]
+ [MAXIMUM-FOR-CALL-RESULT &maxCallResultLength]
+ [MINIMUM-FOR-CARRIER &minCarrierLength]
+ [MAXIMUM-FOR-CARRIER &maxCarrierLength]
+ [MINIMUM-FOR-CAUSE &minCauseLength]
+ [MAXIMUM-FOR-CAUSE &maxCauseLength]
+ [MINIMUM-FOR-DESTINATION &minDestinationIndexLength]
+ [MAXIMUM-FOR-DESTINATION &maxDestinationIndexLength]
+ [MINIMUM-FOR-DIGITS &minDigitsLength]
+ [MAXIMUM-FOR-DIGITS &maxDigitsLength]
+ [MINIMUM-FOR-DISPLAY &minDisplayInformationLength]
+ [MAXIMUM-FOR-DISPLAY &maxDisplayInformationLength]
+ [MINIMUM-FOR-EVENT-SPECIFIC-CHARGING
+ &minEventSpecificInformationChargingLength]
+ [MAXIMUM-FOR-EVENT-SPECIFIC-CHARGING
+ &maxEventSpecificInformationChargingLength]
+ [MINIMUM-FOR-EVENT-TYPE-CHARGING &minEventTypeChargingLength]
+ [MAXIMUM-FOR-EVENT-TYPE-CHARGING &maxEventTypeChargingLength]
+ [MINIMUM-FOR-FCI-BILLING-CHARGING &minFCIBillingChargingLength]
+ [MAXIMUM-FOR-FCI-BILLING-CHARGING &maxFCIBillingChargingLength]
+ [MINIMUM-FOR-FORWARD-GVNS &minForwardGVNSLength]
+ [MAXIMUM-FOR-FORWARD-GVNS &maxForwardGVNSLength]
+ [MINIMUM-FOR-GENERIC-NAME &minGenericNameLength]
+ [MAXIMUM-FOR-GENERIC-NAME &maxGenericNameLength]
+ [MINIMUM-FOR-GENERIC-NUMBER &minGenericNumberLength]
+ [MAXIMUM-FOR-GENERIC-NUMBER &maxGenericNumberLength]
+ [MAXIMUM-FOR-INITIAL-TIME-INTERVAL &maxInitialTimeInterval]
+ [MAXIMUM-FOR-IN-SERVICE-COMPATIBILITY &maxINServiceCompatibilityIndLength]
+ [MINIMUM-FOR-IP-AVAILABLE &minIPAvailableLength]
+ [MAXIMUM-FOR-IP-AVAILABLE &maxIPAvailableLength]
+ [MINIMUM-FOR-IP-SSP-CAPABILITIES &minIPSSPCapabilitiesLength]
+ [MAXIMUM-FOR-IP-SSP-CAPABILITIES &maxIPSSPCapabilitiesLength]
+ [MINIMUM-FOR-ISDN-ACCESS-RELATED-INFO &minISDNAccessRelatedInfoLength]
+ [MAXIMUM-FOR-ISDN-ACCESS-RELATED-INFO &maxISDNAccessRelatedInfoLength]
+ [MINIMUM-FOR-LOCATION-NUMBER &minLocationNumberLength]
+ [MAXIMUM-FOR-LOCATION-NUMBER &maxLocationNumberLength]
+ [MAXIMUM-NB-OF-ROUTES &maxNbOfRoutes]
+ [MINIMUM-FOR-MID-CALL-CONTROL-INFO &minMidCallControlInfoNum]
+ [MAXIMUM-FOR-MID-CALL-CONTROL-INFO &maxMidCallControlInfoNum]
+ [MINIMUM-FOR-ORIGINAL-CALLED-PARTY-ID &minOriginalCalledPartyIDLength]
+ [MAXIMUM-FOR-ORIGINAL-CALLED-PARTY-ID &maxOriginalCalledPartyIDLength]
+ [MINIMUM-FOR-REASON &minReasonLength]
+ [MAXIMUM-FOR-REASON &maxReasonLength]
+ [MINIMUM-FOR-REDIRECTING-ID &minRedirectingPartyIDLength]
+ [MAXIMUM-FOR-REDIRECTING-ID &maxRedirectingPartyIDLength]
+ [MINIMUM-FOR-REQUESTED-UTSI-NUM &minRequestedUTSINum]
+ [MAXIMUM-FOR-REQUESTED-UTSI-NUM &maxRequestedUTSINum]
+ [MINIMUM-FOR-ROUTE-LIST &minRouteListLength]
+ [MAXIMUM-FOR-ROUTE-LIST &maxRouteListLength]
+ [MINIMUM-FOR-ROUTING-NUMBER &minRouteingNumberLength]
+ [MAXIMUM-FOR-ROUTING-NUMBER &maxRouteingNumberLength]
+ [MINIMUM-FOR-SCF-ID &minScfIDLength]
+ [MAXIMUM-FOR-SCF-ID &maxScfIDLength]
+ [MINIMUM-FOR-SCI-BILLING-CHARGING &minSCIBillingChargingLength]
+ [MAXIMUM-FOR-SCI-BILLING-CHARGING &maxSCIBillingChargingLength]
+ [MINIMUM-FOR-SDSS-INFORMATION &minSDSSinformationLength]
+ [MAXIMUM-FOR-SDSS-INFORMATION &maxSDSSinformationLength]
+ [MINIMUM-FOR-SII &minServiceInteractionIndicatorsLength]
+ [MAXIMUM-FOR-SII &maxServiceInteractionIndicatorsLength]
+ [MINIMUM-FOR-SF-BILLING-CHARGING &minSFBillingChargingLength]
+ [MAXIMUM-FOR-SF-BILLING-CHARGING &maxSFBillingChargingLength]
+ [MINIMUM-FOR-USI-INFORMATION &minUSIInformationLength]
+ [MAXIMUM-FOR-USI-INFORMATION &maxUSIInformationLength]
+ [MINIMUM-FOR-USI-SERVICE-INDICATOR &minUSIServiceIndicatorLength]
+ [MAXIMUM-FOR-USI-SERVICE-INDICATOR &maxUSIServiceIndicatorLength]
+ [NUM-OF-BCSM-EVENT &numOfBCSMEvents]
+ [NUM-OF-BCUSM-EVENT &numOfBCUSMEvents]
+ [NUM-OF-CHARGING-EVENT &numOfChargingEvents]
+ [NUM-OF-COUNTERS &numOfCounters]
+ [NUM-OF-CSAS &numOfCSAs]
+ [NUM-OF-CSS &numOfCSs]
+ [NUM-OF-GENERIC-NUMBERS &numOfGenericNumbers]
+ [NUM-OF-INFO-ITEMS &numOfInfoItems]
+ [NUM-OF-INPROFILE &numOfINProfile]
+ [NUM-OF-SEVERALTRIGGER &numOfTriggers]
+ [NUM-OF-IN-SERVICE-COMPATIBILITY-ID &numOfInServiceCompatibilityIndLength]
+ [NUM-OF-LEGS &numOfLegs]
+ [NUM-OF-MESSAGE-IDS &numOfMessageIDs]
+ [MAXIMUM-FOR-AMOUNT &maxAmount]
+ [MAXIMUM-FOR-CALL-REFERENCE &maxCallReferenceLength]
+ [MAXIMUM-FOR-CNINFO &maxCNInfoLength]
+ [MAXIMUM-FOR-INITIAL-UNIT-INCREMENT &maxInitialUnitIncrement]
+ [MAXIMUM-FOR-SCALING-FACTOR &maxScalingFactor]
+ [MAXIMUM-FOR-SEGMENTS-PER-DATA-INTERVAL &maxSegmentsPerDataInterval]
+ [MAXIMUM-FOR-UB-NB-CALL &ub-nbCall]
+ [NUM-OF-ADDRESSES &numOfAddresses]
+ [MINIMUM-FOR-AAL-PARAMETERS &minAALPLength]
+ [MAXIMUM-FOR-AAL-PARAMETERS &maxAALPLength]
+ [MINIMUM-FOR-ADDITIONAL-ATM-CELL-RATE &minAdditionalATMCellRateLength]
+ [MAXIMUM-FOR-ADDITIONAL-ATM-CELL-RATE &maxAdditionalATMCellRateLength]
+ [MINIMUM-FOR-AESA-CALLED-PARTY &minAESACalledPartyLength]
+ [MAXIMUM-FOR-AESA-CALLED-PARTY &maxAESACalledPartyLength]
+ [MINIMUM-FOR-AESA-CALLING-PARTY &minAESACallingPartyLength]
+ [MAXIMUM-FOR-AESA-CALLING-PARTY &maxAESACallingPartyLength]
+ [MINIMUM-FOR-ATM-CELL-RATE &minATMCellRateLength]
+ [MAXIMUM-FOR-ATM-CELL-RATE &maxATMCellRateLength]
+ [MINIMUM-FOR-CDVT-DESCRIPTOR &minCDVTDescriptorLength]
+ [MAXIMUM-FOR-CDVT-DESCRIPTOR &maxCDVTDescriptorLength]
+ [MINIMUM-FOR-CONNECTION-IDENTIFIER &minConnectionIdentifierLength]
+ [MAXIMUM-FOR-CONNECTION-IDENTIFIER &maxConnectionIdentifierLength]
+ [MINIMUM-FOR-CUMULATIVE-TRANSIT-DELAY &minCumulativeTransitDelayLength]
+ [MAXIMUM-FOR-CUMULATIVE-TRANSIT-DELAY &maxCumulativeTransitDelayLength]
+ [MINIMUM-FOR-END-TO-END-TRANSIT-DELAY &minEndToEndTDLength]
+ [MAXIMUM-FOR-END-TO-END-TRANSIT-DELAY &maxEndToEndTDLength]
+ [MINIMUM-FOR-GENERIC-IDENTIFIER &minGenericIdentifierLength]
+ [MAXIMUM-FOR-GENERIC-IDENTIFIER &maxGenericIdentifierLength]
+ [MINIMUM-FOR-MIN-ACCEPTABLE-ATM-TRAFFIC-DESCRIPTOR
+ &minMinAcceptableATMTrafficDescriptorLength]
+ [MAXIMUM-FOR-MIN-ACCEPTABLE-ATM-TRAFFIC-DESCRIPTOR
+ &maxMinAcceptableATMTrafficDescriptorLength]
+ [MINIMUM-FOR-ALTERNATIVE-ATM-TRAFFIC-DESCRIPTOR
+ &minAlternativeATMTrafficDescriptorLength]
+ [MAXIMUN-FOR-ALTERNATIVE-ATM-TRAFFIC-DESCRIPTOR
+ &maxAlternativeATMTrafficDescriptorLength]
+ [MINIMUM-FOR-QOS-PARAMETER &minQoSParameterLength]
+ [MAXIMUM-FOR-QOS-PARAMETER &maxQoSParameterLength]
+ [MINIMUM-FOR-BROADBAND-BEARER-CAPABILITY &minBroadbandBearerCapabilityLength]
+ [MAXIMUM-FOR-BROADBAND-BEARER-CAPABILITY &maxBroadbandBearerCapabilityLength]
+ [MAXIMUM-GLOBAL-CALL-REFERENCE &maxGlobalCallReferenceLength]
+ [MAXIMUM-ALTERNATIVE-IDENTITIES &maxAlternativeIdentities]
+ [MAXIMUM-NB-OF-ALTERNATIVE-IDENTITIES &maxAlternativeIds]
+}
+
+END
+
+-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
+
diff --git a/asn1/inap/IN-SSF-SCF-datatypes.asn b/asn1/inap/IN-SSF-SCF-datatypes.asn
new file mode 100644
index 0000000000..f2be1ac2af
--- /dev/null
+++ b/asn1/inap/IN-SSF-SCF-datatypes.asn
@@ -0,0 +1,1436 @@
+-- $Id$
+-- Small modifications made to the original due to as2wrs shortfalls, to be corrected.
+-- Module IN-SSF-SCF-datatypes (Q.1248.2:07/2001)
+IN-SSF-SCF-datatypes {itu-t recommendation q 1248 modules(1)
+ in-ssf-scf-datatypes(6) version1(0)} DEFINITIONS IMPLICIT TAGS ::=
+BEGIN
+
+IMPORTS
+ common-classes, common-datatypes, ssf-scf-classes, scf-srf-classes,
+ scf-srf-datatypes, tc-Messages
+ FROM IN-object-identifiers {itu-t recommendation q 1248 modules(1)
+ in-object-identifiers(0) version1(0)}
+ COMMON-BOUNDS
+ FROM IN-common-classes common-classes
+ TRIGGER, SCF-SSF-BOUNDS
+ FROM IN-SSF-SCF-Classes {itu-t recommendation q 1248 modules(1)
+ in-ssf-scf-classes(7) version1(0)}
+ SCF-SRF-BOUNDS
+ FROM IN-SCF-SRF-Classes scf-srf-classes
+ Extensions{}, Integer4
+ FROM IN-common-datatypes common-datatypes
+ InformationToSend{}
+ FROM IN-SCF-SRF-datatypes scf-srf-datatypes;
+
+-- The following three definitions are local short-hand notation for convenience.
+--B1 ::=
+-- COMMON-BOUNDS defined in Q.1248.1 (Part 1 of Recommendation Q.1248)
+
+--B2 ::= SCF-SSF-BOUNDS defined in this Recommendation (Q.1248.2)
+
+-- B3 ::= SCF-SRF-BOUNDS defined in Q.1248.3 (Part 3 of Recommendation Q.1248)
+
+AALParameters{B2:b2} ::=
+ OCTET STRING(SIZE (minAALPLength..maxAALPLength))
+
+-- Indicates the AAL Parameters Information Element. Refer to Q.2931 for encoding.
+AccessCode{B2:b2} ::=
+ LocationNumber{b2}
+
+-- An access code from a business group dialling plan attendant access codes, access codes to escape
+-- to the public network, access code to access a private facility/network, and feature access codes.
+-- Uses the LocationNumber format which is based on the Q.763 Location Number format.
+-- The Nature of Address indicator field shall be set to "Spare" (value 00000000).
+-- The Numbering Plan Indicator field shall be set to "Spare" (value 000).
+-- Of local significance.
+AChBillingChargingCharacteristics{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minAChBillingChargingLength..maxAChBillingChargingLength))
+
+-- The AChBillingChargingCharacteristics parameter specifies the charging related information
+-- to be provided by the SSF and the conditions on which this information has to be reported
+-- back to the SCF with the ApplyChargingReport operation.
+-- Different set of criteria may be provided in case more than one report is expected.
+-- Its content is network operator specific.
+-- Examples of charging related information to be provided by the SSF may be: bulk counter
+-- values, costs, tariff change and time of charge, time stamps, durations, etc.
+-- Examples of conditions on which the charging related information are to be reported may be:
+-- threshold value reached, timer expiration, tariff change, end of connection configuration, etc
+ActionIndicator ::= ENUMERATED {activate(1), deactivate(2), retrieve(3)
+}
+
+-- indicates the action to be performed by the ManageTriggerData operation (activate, deactivate
+-- or retrieve the status of a TDP.
+ActionOnProfile ::= ENUMERATED {activate(0), deactivate(1)}
+
+-- Indicates whether a setServiceProfile operation is used to activate or deactivate profile elements.
+ActionPerformed ::= ENUMERATED {
+ activated(1), deactivated(2), alreadyActive(3), alreadyInactive(4),
+ isActive(5), isInactive(6), tDPunknown(7)}
+
+-- indicates the result of the operation ManageTriggerData
+-- activated: response of activate TDP
+-- deactivated: response of deactivate TDP
+-- alreadyActive: response of activate TDP
+-- alreadyInactive: response of deactivate TDP
+-- isActive: response of retrieve status of TDP
+-- isInactive: response of retrieve status of TDP
+AdditionalATMCellRate{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minAdditionalATMCellRateLength..
+ maxAdditionalATMCellRateLength))
+
+-- Indicates the AdditionalATMCellRate Information Element. Refer to Q.2763 for encoding.
+AdditionalCallingPartyNumber{B2:b2} ::=
+ Digits{b2}
+
+-- Indicates the Additional Calling Party Number. Refer to Q.763 for encoding.
+AESACalledParty{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minAESACalledPartyLength..maxAESACalledPartyLength))
+
+-- Indicates the AESACalledParty Information Element. Refer to Q.2763 for encoding.
+AESACallingParty{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minAESACallingPartyLength..maxAESACallingPartyLength))
+
+-- Indicates the AESACallingParty Information Element. Refer to Q.2763 for encoding.
+AlertingPattern ::= OCTET STRING(SIZE (3))
+
+-- Indicates a specific pattern that is used to alert a subscriber (e.g. distinctive ringing, tones, etc.).
+-- Only the trailing OCTET is used, the remaining OCTETS should be sent as NULL (zero)
+-- The receiving side ignores the leading two OCTETS.
+-- Only applies if SSF is the terminating local exchange for the subscriber.
+-- Refer to the Q.931 Signal parameter for encoding.
+AlternativeIdentities{B2:b2} ::=
+ SEQUENCE (SIZE (1..maxAlternativeIdentities)) OF AlternativeIdentity
+
+AlternativeIdentity ::= CHOICE {
+ url [0] IA5String(SIZE (1..512)) -- any RFC1738 compliant URL (e.g.; SIP URL)
+}
+
+--Email addresses shall be represented as URLs.
+AlternativeATMTrafficDescriptor{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minAlternativeATMTrafficDescriptorLength..
+ maxAlternativeATMTrafficDescriptorLength))
+
+-- Indicates the AlternativeATMTrafficDescriptor Information Element. Refer to Q.2931 for encoding.
+ApplicationTimer ::= INTEGER(0..2047)
+
+-- Used by the SCF to set a timer in the SSF. The timer is in seconds.
+AssistingSSPIPRoutingAddress{B2:b2} ::=
+ Digits{b2}
+
+-- Indicates the destination address of the SRF for the assist procedure.
+ATMCellRate{B2:b2} ::=
+ OCTET STRING(SIZE (minATMCellRateLength..maxATMCellRateLength))
+
+-- Indicates the ATMCellRate Information Element. Refer to Q.2763 for encoding.
+BackwardGVNS{B2:b2} ::=
+ OCTET STRING(SIZE (minBackwardGVNSLength..maxBackwardGVNSLength))
+
+-- Indicates the GVNS Backward information. Refer to Q.735 for encoding.
+BackwardServiceInteractionInd ::= SEQUENCE {
+ conferenceTreatmentIndicator [1] OCTET STRING(SIZE (1)) OPTIONAL,
+ -- acceptConferenceRequest 'xxxx xx01'B
+ -- rejectConferenceRequest 'xxxx xx10'B
+ -- network default is accept conference request,
+ callCompletionTreatmentIndicator [2] OCTET STRING(SIZE (1)) OPTIONAL,
+ -- acceptCallCompletionServiceRequest 'xxxx xx01'B,
+ -- rejectCallCompletionServiceRequest 'xxxx xx10'B
+ -- network default is accept call completion service request
+ holdTreatmentIndicator [3] OCTET STRING(SIZE (1)) OPTIONAL,
+ -- acceptHoldRequest 'xxxx xx01'B
+ -- rejectHoldRequest 'xxxx xx10'B
+ -- network default is accept hold request
+ ectTreatmentIndicator [4] OCTET STRING(SIZE (1)) OPTIONAL,
+ -- acceptEctRequest 'xxxx xx01'B
+ -- rejectEctRequest 'xxxx xx10'B
+ -- network default is accept ect request
+ ...
+}
+
+BasicGapCriteria{B2:b2} ::= CHOICE {
+ calledAddressValue [0] Digits{b2},
+ gapOnService [2] GapOnService,
+ gapAllInTraffic [3] NULL,
+ calledAddressAndService
+ [29] SEQUENCE {calledAddressValue [0] Digits{b2},
+ serviceKey [1] ServiceKey,
+ ...},
+ callingAddressAndService
+ [30] SEQUENCE {callingAddressValue [0] Digits{b2},
+ serviceKey [1] ServiceKey,
+ locationNumber [2] LocationNumber{b2} OPTIONAL,
+ ...}
+}
+
+-- Both calledAddressValue and callingAddressValue can be
+-- incomplete numbers, in the sense that a limited amount of digits can be given.
+--
+-- For the handling of numbers starting with the same digit string refer to the detailed procedure
+-- description of the CallGap operation.
+BCSMEvent{B2:b2} ::= SEQUENCE {
+ eventTypeBCSM [0] EventTypeBCSM,
+ monitorMode [1] MonitorMode,
+ legID [2] LegID OPTIONAL,
+ dpSpecificCriteria [30] DpSpecificCriteria{b2} OPTIONAL
+}
+
+-- Indicates the BCSM Event information for monitoring.
+BearerCapability{B2:b2} ::= CHOICE {
+ bearerCap
+ [0] OCTET STRING(SIZE (2..maxBearerCapabilityLength)),
+ tmr [1] OCTET STRING(SIZE (1)),
+ broadbandBearerCap
+ [2] OCTET STRING
+ (SIZE (minBroadbandBearerCapabilityLength..
+ maxBroadbandBearerCapabilityLength))
+}
+
+-- Indicates the type of bearer capability connection to the user. For narrow-band bearerCapability, either
+-- DSS 1 (Q.931) or the ISUP User Service Information (Q.763) encoding can be used. Refer
+-- to the Q.763 Transmission Medium Requirement parameter for tmr encoding.
+-- For broadband ISDN: Indicates the Broadband Bearer Capability. Refer to Q.2961 for encoding.
+BISDNParameters{B2:b2} ::= SEQUENCE {
+ aALParameters [0] AALParameters{b2} OPTIONAL,
+ additionalATMCellRate [1] AdditionalATMCellRate{b2} OPTIONAL,
+ aESACalledParty [2] AESACalledParty{b2} OPTIONAL,
+ aESACallingParty [3] AESACallingParty{b2} OPTIONAL,
+ alternativeATMTrafficDescriptor
+ [4] AlternativeATMTrafficDescriptor{b2} OPTIONAL,
+ aTMCellRate [5] ATMCellRate{b2} OPTIONAL,
+ cDVTDescriptor [6] CDVTDescriptor{b2} OPTIONAL,
+ cumulativeTransitDelay [7] CumulativeTransitDelay{b2} OPTIONAL,
+ endToEndTransitDelay [8] EndToEndTransitDelay{b2} OPTIONAL,
+ minAcceptableATMTrafficDescriptor
+ [9] MinAcceptableATMTrafficDescriptor{b2} OPTIONAL,
+ ...
+}
+
+-- Special construct used to gather all B-ISDN specific parameters
+BothwayThroughConnectionInd ::= ENUMERATED {
+ bothwayPathRequired(0), bothwayPathNotRequired(1)}
+
+-- Indicates whether the speech path must be established both way when user interaction takes place.
+CalledDirectoryNumber{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minCalledDirectoryNumberLength..
+ maxCalledDirectoryNumberLength))
+
+-- Indicates the Called Directory Number. Refer to Q.763 'Called Directory Number' for encoding.
+CalledPartyBusinessGroupID ::= OCTET STRING
+
+-- Indicates the business group of the called party. The value of this octet string is network
+-- operator specific.
+CalledPartyNumber{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minCalledPartyNumberLength..maxCalledPartyNumberLength))
+
+-- Indicates the Called Party Number.. Refer to Q.763 for encoding.
+CalledPartySubaddress{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minCalledPartySubaddressLength..
+ maxCalledPartySubaddressLength))
+
+-- Indicates the Called Party Subaddress. . Refer to Q.763 for encoding.
+CDVTDescriptor{B2:b2} ::=
+ OCTET STRING(SIZE (minCDVTDescriptorLength..maxCDVTDescriptorLength))
+
+-- Indicates the CDVTDescriptor Information Element. Refer to Q.2763 for encoding.
+CallingGeodeticLocation{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minCallingGeodeticLocationLength..
+ maxCallingGeodeticLocationLength))
+
+-- The coding of this parameter is based on the appropriate mapping with the ISUP parameter Calling Geodetic Location.
+-- Refer to Q.763 for encoding.
+-- This parameter indicates the geograhic coordinate of a calling party. The excessive amount of data possible
+-- within this parameter may require segmentation of the INAP operation to be-sent to the SCF.
+-- The amount of data possible to be conveyed within this parameter from
+-- the SSF -to the SCF could be limitted, for example it may be considered to only support a relevant subset of all the
+-- shape descriptions. This is to be considered in the next Capability Set.
+CallingPartyBusinessGroupID ::= OCTET STRING
+
+-- Indicates the business group of the calling party. The value of this octet string is network
+-- operator specific.
+CallingPartyNumber{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minCallingPartyNumberLength..maxCallingPartyNumberLength))
+
+-- Indicates the Calling Party Number. Refer to Q.763 for encoding.
+CallingPartySubaddress{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minCallingPartySubaddressLength..
+ maxCallingPartySubaddressLength))
+
+-- Indicates the Calling Party Subaddress. . Refer to Q.763 for encoding.
+CallingPartysCategory ::= OCTET STRING(SIZE (1))
+
+-- Indicates the type of calling party (e.g. operator, payphone, ordinary subscriber).
+-- Refer to Q.763 for encoding
+CallProcessingOperation ::= ENUMERATED {
+ aLERTing(1), sETUP(5), cONNect(7), dISConnect(69), rELease(77),
+ rELeaseCOMPlete(90), fACility(98)}
+
+CallReference{B2:b2} ::= OCTET STRING(SIZE (1..maxCallReferenceLength))
+
+-- The coding of this parameter is network specific.
+-- A possible coding is the Q.763 call reference
+-- but other encoding schemes are possible.
+-- The Call Reference value is unique within one network. When transit through a private
+-- network the uniqueness of the call reference parameter is not maintained
+CallResult{B2:b2} ::=
+ OCTET STRING(SIZE (minCallResultLength..maxCallResultLength))
+
+-- This parameter provides the SCF with the charging related information previously requested
+-- using the ApplyCharging operation. This shall include the partyToCharge parameter as
+-- received in the related ApplyCharging operation to correlate the result to the request
+-- The remaining content is network operator specific.
+-- Examples of charging related information to be provided by the SSF may be: bulk counter values,
+-- costs, tariff change and time of change, time stamps, durations, etc.
+-- Examples of conditions on which the charging related information are to be reported may be:
+-- threshold value reached, timer expiration, tariff change, end of connection configuration, etc.
+CallSegmentID{B2:b2} ::= INTEGER(1..numOfCSs)
+
+Carrier{B2:b2} ::=
+ OCTET STRING(SIZE (minCarrierLength..maxCarrierLength))
+
+-- Contains the carrier selection field (first octet) followed by either Carrier ID information (option 1) , or the Transit
+--Network selection information (option 2), depending on the network.
+-- In both cases, the Carrier selection is one octet and is encoded as:
+-- 00000000 No indication
+-- 00000001 Selected carrier code pre subscribed and not input by calling party
+-- 00000010 Selected carrier identification code pre subscribed and input by calling party
+-- 00000011 Selected carrier identification code pre subscribed, no indication of whether input by calling party
+-- 00000100 Selected carrier identification code not pre subscribed and input by calling party
+-- 00000101
+-- 00000101
+-- to Reserved
+-- 00001001
+-- 00001010 Carrier selected by input from calling party
+-- 00001011 Carrier selected by a network operator
+-- 00001100
+-- to spare
+-- 11111110
+-- 00001011 Reserved
+-- For the first option, Carrier ID has a one octet field indicating the number of digits followed by the digits encoded
+-- using BCD. Detailed coding is outside the scope of this capability set. It is of local significance and carrying
+-- it through the ISUP is outside the scope of this capability set
+-- For the second option, refer to Q.763 for the TNS encoding.
+--Note that this ASN.1 encoding of this parameter includes 2 possible encodings, referred to as option 1 and option 2.
+--The encoding that should be used is dependent on the network. It is a hard-coded decision based
+-- on the region in which the switch is located.
+Cause{B2:b2} ::= OCTET STRING(SIZE (minCauseLength..maxCauseLength))
+
+-- Indicates the cause for interface related information. Refer to the Q.763 Cause parameter for encoding
+-- For the use of cause and location values refer to Q.850.
+CCSS ::= BOOLEAN
+
+-- Used by the SSF to indicate CCSS (Call Completion on Service Set-up) if set to "True" to the SCF,
+-- i.e. that the current call is due a special procedure (CCBS or CCNR).
+CGEncountered ::= ENUMERATED {
+ noCGencountered(0), manualCGencountered(1), sCPOverload(2)}
+
+-- Indicates the type of automatic call gapping encountered, if any.
+ChargeNumber{B2:b2} ::=
+ LocationNumber{b2}
+
+-- Information sent in either direction indicating the chargeable number for the call and consisting
+-- of the odd/even indicator, nature of address indicator, numbering plan indicator, and address signals.
+-- Uses the LocationNumber format which is based on the Q.763 Location Number format
+-- For example, the ChargeNumber may be a third party number to which a call is billed for the 3rd party billing
+-- service. In this case, the calling party may request operator assistance to charge the call to,
+-- for example, their home number.
+ChargingEvent{B2:b2} ::= SEQUENCE {
+ eventTypeCharging [0] EventTypeCharging{b2},
+ monitorMode [1] MonitorMode,
+ legID [2] LegID OPTIONAL
+}
+
+-- This parameter indicates the charging event type and corresponding monitor mode and LedID
+CNInfo{B2:b2} ::= OCTET STRING(SIZE (1..maxCNInfoLength))
+
+-- encoding of cNInfo is similar to the NNI specific information in the APP parameter in Q.765.1
+-- first octet contains Q.765.1 CNID indicator, only bit 5 and 6 are significant. This is followed by zero to 12 octets
+-- that contains the Q.765.1 CNID parameter, i.e. the Corporate Telecommunications Network Identifier , if present.
+-- This implies that the recommended maxCNInfoLength becomes 13 octets.
+Component ::= CHOICE {
+ componentInfo [0] OCTET STRING(SIZE (1..118)),
+ -- Contains the operation value (object identifier), error value, etc. within the UNI APDU, in addition also contain
+ -- the parameter set/sequence for the operation invocation/return result ot return error/reject on UNI. See Q.932
+ -- for encoding
+ relayedComponent [1] EMBEDDED PDV
+}
+
+-- If componentInfo is chosen, then it is necessary to use this parameter in sequence with ComponentType and
+-- ComponentCorrelationID
+-- If relayedComponent is chosen, then ComponentType and ComponentCorrelationID may not be used in the
+-- sequence
+ComponentCorrelationID ::= INTEGER
+
+ComponentType ::= ENUMERATED {
+ any(0), invoke(1), rResult(2), rError(3), rReject(4)}
+
+-- Type of component in a Facility information element
+CompoundCriteria{B2:b2} ::= SEQUENCE {
+ basicGapCriteria [0] BasicGapCriteria{b2},
+ scfID [1] ScfID{b2} OPTIONAL
+}
+
+-- Allows to combine basic gap criteria with the SCF identifier.
+ConnectedNumberTreatmentInd ::= ENUMERATED {
+ noINImpact(0), presentationRestricted(1), presentCalledINNumber(2),
+ presentCalledINNumberRestricted(3)}
+
+ConnectionIdentifier{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minConnectionIdentifierLength..maxConnectionIdentifierLength))
+
+-- Indicates the ConnectionElementIdentifier Information Element. Refer to Q.2763 for encoding.
+ControlType ::= ENUMERATED {
+ sCPOverloaded(0), manuallyInitiated(1), destinationOverload(2)
+
+-- other values are outside the scope of this capability set.
+}
+
+CorrelationID{B2:b2} ::= Digits{b2}
+
+-- used by SCF for correlation with a previous operation. Refer to clause 11 for a description of the procedures
+-- associated with this parameter.
+CounterAndValue ::= SEQUENCE {
+ counterID [0] CounterID,
+ counterValue [1] Integer4
+}
+
+CounterID ::= INTEGER(0..9)
+
+-- Indicates the counters to be incremented The counterIDs can be addressed by using the last digits of the dialed number.
+CountersValue{B2:b2} ::=
+ SEQUENCE SIZE (0..numOfCounters) OF CounterAndValue
+
+CreateOrRemoveIndicator ::= ENUMERATED {create(0), remove(1)}
+
+CSAID{B2:b2} ::= INTEGER(1..numOfCSAs)
+
+-- Indicates the SSF CSA identifier
+CUG-Interlock ::= OCTET STRING(SIZE (4)) -- See Q.763 for encoding
+
+
+CUG-Index ::=
+ IA5String(SIZE (1..4))
+ (FROM ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"))
+
+CumulativeTransitDelay{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minCumulativeTransitDelayLength..
+ maxCumulativeTransitDelayLength))
+
+-- Indicates the CumulativeTransitDelay Information Element. Refer to Q.2763 for encoding.
+CutAndPaste ::= INTEGER(0..2)
+
+-- Indicates the number of leading digits to be deleted (cut) and to paste remaining dialed digits.
+DateAndTime ::= OCTET STRING(SIZE (6))
+
+-- Indicates, amongst others, the start time for activate service filtering. Coded as YYMMDDHHMMSS
+-- with each digit coded BCD
+-- The first octet contains YY and the remaining items are sequenced following
+-- For example, 1998 September 30th, 12:15:01 would be encoded as:
+-- Bits HGFE DCBA
+-- leading octet 8 9
+-- 9 0
+-- 0 3
+-- 2 1
+-- 5 1
+-- 1 0
+-- For a system operating when or after this Recommendation is released, the 2 digit value
+-- representing a Year shall be interpreted as follows
+-- If the two-digits value is 00 through 49 inclusive, it shall be interpreted as representing
+-- year 2000 through 2049.
+-- If the two-digits value is 50 through 99 inclusive, it shall be interpreted as representng
+-- year 1950 through 1999.
+DefaultFaultHandling{B2:b2, B3:b3} ::= SEQUENCE {
+ action [0] ENUMERATED {resumeCallProcessing(0), releaseCall(1), ...
+ },
+ treatment [1] GapTreatment{b2, b3} OPTIONAL,
+ ...
+}
+
+-- Indicates the default SSF behaviour in case a service cannot be triggered (e.g;. due to call gapping) or
+-- no valid answer is received from the SCF.
+DestinationIndex{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minDestinationIndexLength..maxDestinationIndexLength))
+
+-- Indicates a pointer to a destination. Its content is network operator specific
+DestinationRoutingAddress{B2:b2} ::=
+ SEQUENCE SIZE (1..numOfAddresses) OF CalledPartyNumber{b2}
+
+-- Indicates the list of Called Party Numbers (primary and alternates).
+Digits{B2:b2} ::= OCTET STRING(SIZE (minDigitsLength..maxDigitsLength))
+
+-- Indicates the address signalling digits. Refer to the Q.763 Generic Number and Generic Digits parameter
+-- for encoding. The coding of the subfield's 'NumberQualifier' in Generic Number and 'TypeOfDigits' in
+-- Generic Digits are irrelevant to the INAP, the ASN.1 tags are sufficient to identify the parameter.
+-- The ISUP format does not allow to exclude these subfields, therefore the value is network operator specific.
+-- The following parameters should use Generic Number
+-- Additional Calling Number, CorrelationID for AssistRequestInstructions, AssistingSSPIPRoutingAddress
+-- for EstablishTemporaryConnection
+-- calledAddressValue for all occurrences,callingAddressValue for all occurrences
+-- The following parameters should use Generic Digits: prefix, all
+-- other CorrelationID occurrences, dialledNumber filtering criteria, callingLineID filtering criteria, lineID for
+-- ResourceID type, digitResponse for ReceivedInformationArg, iNServiceControlLow / iNServiceControlHigh for
+--MidCallInfoType,, iNServiceControlCode for MidCallInfo.
+DisplayInformation{B2:b2} ::=
+ IA5String
+ (SIZE (minDisplayInformationLength..maxDisplayInformationLength))
+
+-- Indicates the display information
+-- Delivery of DisplayInformation parameter to Private Networks cannot be guaranteed due to signalling
+-- interworking problems, solutions are outside the scope of this capability set.
+DpSpecificCommonParameters{B1:b1, B2:b2} ::= SEQUENCE {
+ serviceAddressInformation [0] ServiceAddressInformation,
+ bearerCapability [1] BearerCapability{b2} OPTIONAL,
+ calledPartyNumber [2] CalledPartyNumber{b2} OPTIONAL,
+ callingPartyNumber [3] CallingPartyNumber{b2} OPTIONAL,
+ callingPartysCategory [4] CallingPartysCategory OPTIONAL,
+ iPSSPCapabilities [5] IPSSPCapabilities{b2} OPTIONAL,
+ iPAvailable [6] IPAvailable{b2} OPTIONAL,
+ iSDNAccessRelatedInformation
+ [7] ISDNAccessRelatedInformation{b2} OPTIONAL,
+ cGEncountered [8] CGEncountered OPTIONAL,
+ locationNumber [9] LocationNumber{b2} OPTIONAL,
+ serviceProfileIdentifier [10] ServiceProfileIdentifier OPTIONAL,
+ terminalType [11] TerminalType OPTIONAL,
+ extensions [12] Extensions{b1} OPTIONAL,
+ chargeNumber [13] ChargeNumber{b2} OPTIONAL,
+ servingAreaID [14] ServingAreaID{b2} OPTIONAL,
+ serviceInteractionIndicators
+ [15] ServiceInteractionIndicators{b2} OPTIONAL,
+ iNServiceCompatibilityIndication
+ [16] INServiceCompatibilityIndication{b2} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [17] ServiceInteractionIndicatorsTwo OPTIONAL,
+ uSIServiceIndicator [18] USIServiceIndicator{b2} OPTIONAL,
+ uSIInformation [19] USIInformation{b2} OPTIONAL,
+ forwardGVNS [20] ForwardGVNS{b2} OPTIONAL,
+ createdCallSegmentAssociation [21] CSAID{b2} OPTIONAL,
+ ...,
+ ipRelatedInformation [22] IPRelatedInformation{b2} OPTIONAL
+}
+
+-- OPTIONAL for iPSSPCapabilities, iPAvailable, and cGEncountered denotes network operator specific use
+-- OPTIONAL for callingPartyNumber, and callingPartysCategory
+-- . bearerCapability should be appropriately coded as speech.
+DpSpecificCriteria{B2:b2} ::= CHOICE {
+ numberOfDigits [0] NumberOfDigits,
+ applicationTimer [1] ApplicationTimer,
+ midCallControlInfo [2] MidCallControlInfo{b2},
+ numberOfDigitsTwo
+ [3] SEQUENCE {requestedNumberOfDigits [0] NumberOfDigits,
+ minNumberOfDigits [1] NumberOfDigits OPTIONAL
+ }
+}
+
+-- The SCF may specify the number of digits to be collected by the SSF for the CollectedInfo event
+-- When all digits are collected, the SSF reports the event to the SCF
+-- The SCF may set a timer in the SSF for the No Answer event. If the user does not answer the call
+--within the allotted time, the SSF reports the event to the SCF
+-- The SCF may specify the number of digits to be collected by the SSF for the
+-- CollecteInfo event and hereby specify a minimum number of digits to be collected in case
+-- the exact number of digits is unknown to the SCF, but a report is desired in case of complete number
+-- is determined before the requested number of digits has been collected.
+Duration ::= INTEGER(-2..86400)
+
+-- Values are seconds. The interpetationof value 0 depends on the context where it is used..
+-- A duration of -1 indicates an infinite duration.
+-- A duration of -2 indicates a network specific duration.
+EndToEndTransitDelay{B2:b2} ::=
+ OCTET STRING(SIZE (minEndToEndTDLength..maxEndToEndTDLength))
+
+-- Indicates the MaximunEndToEndTransitDelay Information Element. Refer to Q.2763 for encoding.
+Entry ::= CHOICE {
+ agreements [0] OBJECT IDENTIFIER,
+ networkSpecific [1] Integer4
+}
+
+-- Identifies a class of service for IN service compatibility procedures.
+EventSpecificInformationBCSM{B2:b2} ::= CHOICE {
+ collectedInfoSpecificInfo
+ [0] SEQUENCE {calledPartynumber [0] CalledPartyNumber{b2},
+ ...},
+ analysedInfoSpecificInfo
+ [1] SEQUENCE {calledPartynumber [0] CalledPartyNumber{b2},
+ ...},
+ routeSelectFailureSpecificInfo
+ [2] SEQUENCE {failureCause [0] Cause{b2} OPTIONAL,
+ ...},
+ oCalledPartyBusySpecificInfo
+ [3] SEQUENCE {busyCause [0] Cause{b2} OPTIONAL,
+ ...},
+ oNoAnswerSpecificInfo
+ [4] SEQUENCE {...,
+ cause [0] Cause{b2} OPTIONAL},
+ oAnswerSpecificInfo
+ [5] SEQUENCE {backwardGVNS [0] BackwardGVNS{b2} OPTIONAL,
+ ...},
+ oMidCallSpecificInfo
+ [6] SEQUENCE {connectTime [0] Integer4 OPTIONAL,
+ oMidCallInfo [1] MidCallInfo{b2} OPTIONAL,
+ ...},
+ oDisconnectSpecificInfo
+ [7] SEQUENCE {releaseCause [0] Cause{b2} OPTIONAL,
+ connectTime [1] Integer4 OPTIONAL,
+ ...},
+ tBusySpecificInfo
+ [8] SEQUENCE {busyCause [0] Cause{b2} OPTIONAL,
+ ...},
+ tNoAnswerSpecificInfo
+ [9] SEQUENCE {...,
+ cause [0] Cause{b2} OPTIONAL},
+ tAnswerSpecificInfo
+ [10] SEQUENCE {-- no specific info defined
+ ...},
+ tMidCallSpecificInfo
+ [11] SEQUENCE {connectTime [0] Integer4 OPTIONAL,
+ tMidCallInfo [1] MidCallInfo{b2} OPTIONAL,
+ ...},
+ tDisconnectSpecificInfo
+ [12] SEQUENCE {releaseCause [0] Cause{b2} OPTIONAL,
+ connectTime [1] Integer4 OPTIONAL,
+ ...},
+ oTermSeizedSpecificInfo
+ [13] SEQUENCE {-- no specific info defined
+ ...},
+ oSuspend
+ [14] SEQUENCE {-- no specific info defined
+ ...},
+ tSuspend
+ [15] SEQUENCE {-- no specific info defined
+ ...},
+ origAttemptAuthorized
+ [16] SEQUENCE {-- no specific info defined
+ ...},
+ oReAnswer
+ [17] SEQUENCE {-- no specific info defined
+ ...},
+ tReAnswer
+ [18] SEQUENCE {-- no specific info defined
+ ...},
+ facilitySelectedAndAvailable
+ [19] SEQUENCE {-- no specific info defined
+ ...},
+ callAccepted
+ [20] SEQUENCE {-- no specific info defined
+ ...},
+ oAbandon
+ [21] SEQUENCE {abandonCause [0] Cause{b2} OPTIONAL,
+ ...},
+ tAbandon
+ [22] SEQUENCE {abandonCause [0] Cause{b2} OPTIONAL,
+ ...},
+ authorizeRouteFailure
+ [23] SEQUENCE {authoriseRouteFailureCause [0] Cause{b2} OPTIONAL,
+ ...},
+ terminationAttemptAuthorized
+ [24] SEQUENCE {-- no specific info defined
+ ...},
+ originationAttemptDenied
+ [25] SEQUENCE {originationDeniedCause [0] Cause{b2} OPTIONAL,
+ ...},
+ terminationAttemptDenied
+ [26] SEQUENCE {terminationDeniedCause [0] Cause{b2} OPTIONAL,
+ ...},
+ oModifyRequestSpecificInfo
+ [40] SEQUENCE {aTMCellRate [0] ATMCellRate{b2} OPTIONAL,
+ additionalATMCellRate
+ [1] AdditionalATMCellRate{b2} OPTIONAL,
+ ...},
+ oModifyResultSpecificInfo
+ [41] SEQUENCE {modifyResultType
+ [0] ModifyResultType DEFAULT modifyAcknowledge,
+ aTMCellRate [1] ATMCellRate{b2} OPTIONAL,
+ additionalATMCellRate
+ [2] AdditionalATMCellRate{b2} OPTIONAL,
+ ...},
+ tModifyRequestSpecificInfo
+ [42] SEQUENCE {aTMCellRate [0] ATMCellRate{b2} OPTIONAL,
+ additionalATMCellRate
+ [1] AdditionalATMCellRate{b2} OPTIONAL,
+ ...},
+ tModifyResultSpecificInfo
+ [43] SEQUENCE {modifyResultType
+ [0] ModifyResultType DEFAULT modifyAcknowledge,
+ aTMCellRate [1] ATMCellRate{b2} OPTIONAL,
+ additionalATMCellRate
+ [2] AdditionalATMCellRate{b2} OPTIONAL,
+ ...}
+}
+
+-- Indicates the call related information specific to the event.
+-- The unit for the connectTime is 100 milliseconds
+EventSpecificInformationCharging{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minEventSpecificInformationChargingLength..
+ maxEventSpecificInformationChargingLength))
+
+-- defined by network operator.
+-- Its content is network signalling/operator specific.
+-- Indicates the charging related information specific to the event.
+-- An example data EmbeddedType definition for this parameter is given below:
+-- chargePulses [0] Integer4,
+-- chargeMessages [1] OCTET STRING (SIZE (min..max))
+EventTypeBCSM ::= ENUMERATED {
+ origAttemptAuthorized(1), collectedInfo(2), analysedInformation(3),
+ routeSelectFailure(4), oCalledPartyBusy(5), oNoAnswer(6), oAnswer(7),
+ oMidCall(8), oDisconnect(9), oAbandon(10), termAttemptAuthorized(12),
+ tBusy(13), tNoAnswer(14), tAnswer(15), tMidCall(16), tDisconnect(17),
+ tAbandon(18), oTermSeized(19), oSuspend(20), tSuspend(21), origAttempt(22),
+ termAttempt(23), oReAnswer(24), tReAnswer(25),
+ facilitySelectedAndAvailable(26), callAccepted(27),
+ authorizeRouteFailure(28), originationAttemptDenied(29),
+ terminationAttemptDenied(30), oModifyRequest(100), oModifyResult(101),
+ tModifyRequest(102), tModifyResult(103)}
+
+-- Indicates the name of the BCSM detection point event.
+-- Notice: Values origAttempt and termAttempt can only be used for TDPs
+-- The value range 100- 127 is reserved for bearer related events
+EventTypeCharging{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minEventTypeChargingLength..maxEventTypeChargingLength))
+
+-- This parameter indicates the charging event type. .
+-- Its content is network signalling / operator specific.
+-- An example data type definition for this parameter is given below:
+-- EventTypeCharging EmbeddedType ::= ENUMERATED {
+-- chargePulses (0),
+-- chargeMessages (1)
+-- }
+FacilityGroup ::= CHOICE {
+ trunkGroupID [0] INTEGER,
+ privateFacilityID [1] INTEGER,
+ huntGroup [2] OCTET STRING,
+ routeIndex [3] OCTET STRING
+}
+
+-- Indicates the particular group of facilities to route the call. huntGroup and routeIndex are encoded as
+-- network operator specific.
+FacilityGroupMember ::= INTEGER
+
+-- Indicates the specific member of a trunk group or multi-line hunt group.
+FCIBillingChargingCharacteristics{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minFCIBillingChargingLength..maxFCIBillingChargingLength))
+
+-- This parameter indicates the billing and/or charging characteristics.
+-- Its content is network operator specific.
+-- An example datatype definition for this parameter is given below:
+-- FCIBillingChargingCharacteristicsEmbeddedType ::= CHOICE {
+-- completeChargingrecord [0] OCTET STRING (SIZE (min..max)),
+-- correlationID [1] CorrelationID,
+-- scenario2Dot3 [2] SEQUENCE {
+-- chargeParty [0] LegID OPTIONAL,
+-- chargeLevel [1] OCTET STRING (SIZE (min..max)) OPTIONAL,
+-- chargeItems [2] SET OF Attribute OPTIONAL
+-- }
+-- }
+-- Depending on the applied charging scenario the following information elements can be included
+-- (refer to Q.1214 Appendix II):
+-- complete charging record (scenario 2.2)
+-- charge party (scenario 2.3)
+-- charge level (scenario 2.3)
+-- charge items (scenario 2.3)
+-- correlationID (scenario 2.4)
+FeatureCode{B2:b2} ::=
+ LocationNumber{b2}
+
+-- The two-digit feature code preceded by "*" or "11".
+-- Uses the LocationNumber format which is based on the Q.763 Location Number format.
+-- The Nature of Address indicator field shall be set to "Spare" (value 00000000).
+-- The Numbering Plan Indicator field shall be set to "Spare" (value 000)
+-- Used for stimulus signalling (Q.932).
+FeatureRequestIndicator ::= ENUMERATED {
+ hold(0), retrieve(1), featureActivation(2), spare1(3), sparen(127)}
+
+-- Indicates the feature activated (e.g. a switch-hook flash, feature activation). Spare values reserved
+-- for future use.
+FilteredCallTreatment{B2:b2, B3:b3} ::= SEQUENCE {
+ sFBillingChargingCharacteristics [0] SFBillingChargingCharacteristics{b2},
+ informationToSend [1] InformationToSend{b2, b3} OPTIONAL,
+ maximumNumberOfCounters [2] MaximumNumberOfCounters{b2} OPTIONAL,
+ releaseCause [3] Cause{b2} OPTIONAL,
+ ...
+}
+
+-- If releaseCause is not present, the default value is the same as the ISUP cause value decimal 31.
+-- If informationToSend is present, the call will be released after the end of the announcement
+-- with the indicated or default releaseCause.
+-- If maximumNumberOfCounters is not present, ServiceFilteringResponse will be sent with
+-- CountersValue::= SEQUENCE SIZE (0) OF CountersAndValue.
+FilteringCharacteristics ::= CHOICE {
+ interval [0] INTEGER(-1..32000),
+ numberOfCalls [1] Integer4
+}
+
+-- Indicates the severity of the filtering and the point in time when the ServiceFilteringResponse is to be sent.
+-- If = interval, every interval of time the next call leads to an InitialDP and a ServiceFilteringResponse is sent to
+-- the SCF.
+-- An interval of 0 indicates that all calls matching the filtering criteria will result in sending of an "InitialDP" or a DP-specific
+-- operation and no filtering will be applied (i.e. no "ServiceFilteringResponse will be sent).
+-- An interval of -1 indicates that none of the calls matching the filtering criteria will either result in sending of
+-- an "InitialDP" or a DP-specific operation or a "ServiceFilteringResponse" operation.
+-- Other values of Interval indicate duration in seconds.
+-- If = NumberOfCalls, every N calls the Nth call leads to an InitialDP and a ServiceFilteringResponse
+-- is sent to the SCF.
+-- If ActivateServiceFiltering implies several counters - filtering on several dialled numbers -,
+-- the numberOfCalls would include calls to all the dialled numbers.
+FilteringCriteria{B2:b2} ::= CHOICE {
+ dialledNumber [0] Digits{b2},
+ callingLineID [1] Digits{b2},
+ serviceKey [2] ServiceKey,
+ addressAndService
+ [30] SEQUENCE {calledAddressValue [0] Digits{b2},
+ serviceKey [1] ServiceKey,
+ callingAddressValue [2] Digits{b2} OPTIONAL,
+ locationNumber [3] LocationNumber{b2} OPTIONAL,
+ ...}
+}
+
+-- In case calledAddressValue is specified, the numbers to be filtered are from calledAddressValue
+-- up to and including calledAddressValue + maximumNumberOfCounters-1.
+-- The last two digits of calledAddressvalue can not exceed 100-maximumNumberOfCounters.
+FilteringTimeOut ::= CHOICE {
+ duration [0] Duration,
+ stopTime [1] DateAndTime
+}
+
+-- Indicates the maximum duration of the filtering. When the timer expires, a ServiceFilteringResponse
+-- is sent to the SCF.
+-- duration of 0 indicates that service filtering is to be removed.
+-- duration of -1 indicates an infinite duration.
+-- duration of -2 indicates a network specific duration.
+-- other values indicate duration in seconds.
+ForwardCallIndicators ::= OCTET STRING(SIZE (2))
+
+-- Indicates the Forward Call Indicators. Refer to Q.763 for encoding
+ForwardGVNS{B2:b2} ::=
+ OCTET STRING(SIZE (minForwardGVNSLength..maxForwardGVNSLength))
+
+-- Indicates the GVNS Forward information. Refer to Q.735, §6 for encoding.
+ForwardingCondition ::= ENUMERATED {busy(0), noanswer(1), any(2)}
+
+-- Indicates the condition that must be met to complete the connect.
+ForwardServiceInteractionInd ::= SEQUENCE {
+ conferenceTreatmentIndicator [1] OCTET STRING(SIZE (1)) OPTIONAL,
+ -- acceptConferenceRequest 'xxxx xx01',B
+ -- rejectConferenceRequest 'xxxx xx10'B
+ -- network default is accept conference request.
+ callDiversionTreatmentIndicator [2] OCTET STRING(SIZE (1)) OPTIONAL,
+ -- callDiversionAllowed 'xxxx xx01'B
+ -- callDiversionNotAllowed 'xxxx xx10'B
+ -- network default is Call Diversion allowed.
+ callOfferingTreatmentIndicator [3] OCTET STRING(SIZE (1)) OPTIONAL,
+ --indicates if call offering is "allowed"," not allowed" or "no impact by IN"
+ -- the value 'no impact by IN," has only local significance in SSF as a request to SSF
+ -- not to modify the value of the call offering treatment indicator conveyed in signaling.
+ -- callOfferingNotAllowed 'xxxx xx01'B,
+ -- callOfferingAllowed 'xxxx xx10'B
+ -- callOfferingNoINImpact 'xxxx x100'B
+ --indicates if call offering is "allowed"," not allowed" or "no impact by IN".
+ -- network default is Call Offering not allowed
+ callWaitingTreatmentIndicator [5] OCTET STRING(SIZE (1)) OPTIONAL,
+ -- callWaitingAllowed 'xxxx xx01'B,
+ -- callWaitingNotAllowed 'xxxx xx10'B
+ -- network default is Call Waiting allowed
+ -- Notice Tag value 4 is otherwise reserved .
+ ...,
+ holdTreatmentIndicator [6] OCTET STRING(SIZE (1)) OPTIONAL,
+ -- acceptHoldRequest 'xxxx xx01'B
+ -- rejectHoldRequest 'xxxx xx10'B
+ -- network default is accept hold request
+ ectTreatmentIndicator [7] OCTET STRING(SIZE (1)) OPTIONAL
+ -- acceptEctRequest 'xxxx xx01'B
+ -- rejectEctRequest 'xxxx xx10'B
+ -- network default is accept ect request
+}
+
+--The forwardServiceInteractionInd parameter is applicable to IDP, CON, CWA and ICA operations.
+--This parameter can be received either in the O_BCSM or in the T_BCSM.
+GapCriteria{B2:b2} ::= CHOICE {
+ basicGapCriteria BasicGapCriteria{b2},
+ compoundCapCriteria CompoundCriteria{b2}
+}
+
+GapOnService ::= SEQUENCE {
+ serviceKey [0] ServiceKey,
+ dpCriteria [1] EventTypeBCSM OPTIONAL,
+ ...
+}
+
+GapIndicators ::= SEQUENCE {
+ duration [0] Duration,
+ gapInterval [1] Interval,
+ ...
+}
+
+-- Indicates the gapping characteristics.
+-- A duration of 0 indicates that gapping is to be removed.
+-- A duration of -1 indicates an infinite duration.
+-- A duration of -2 indicates a network specific duration.
+--= Other values indicate duration in seconds.
+-- An interval of 0 indicates that service requests meeting the gap criteria are not to be rejected , i.e.
+-- No gapping when gapInterval equals 0, and
+-- an interval of -1 indicates that all service requests meeting the gap criteria are to be rejected, i.e.
+-- gap all calls when gapInterval equals -1 .
+--= Other values indicate interval in milliseconds.
+GapTreatment{B2:b2, B3:b3} ::= CHOICE {
+ informationToSend [0] InformationToSend{b2, b3},
+ releaseCause [1] Cause{b2},
+ both
+ [2] SEQUENCE {informationToSend [0] InformationToSend{b2, b3},
+ releaseCause [1] Cause{b2},
+ ...}
+}
+
+-- The default value for Cause is the same as in ISUP.
+GenericIdentifier{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minGenericIdentifierLength..maxGenericIdentifierLength))
+
+-- Indicates the GenericIdentifier Information Element. Refer to Q.2931 for encoding.
+GenericName{B2:b2} ::=
+ OCTET STRING(SIZE (minGenericNameLength..maxGenericNameLength))
+
+-- Refer to Q.931 Display Information for encoding.
+GenericNumber{B2:b2} ::=
+ OCTET STRING(SIZE (minGenericNumberLength..maxGenericNumberLength))
+
+-- Refer to Q.763 Generic Number for encoding.
+GenericNumbers{B2:b2} ::=
+ SET SIZE (1..numOfGenericNumbers) OF GenericNumber{b2}
+
+GlobalCallReference{B2:b2} ::=
+ OCTET STRING(SIZE (1..maxGlobalCallReferenceLength))
+
+-- Global Call Reference as defined in Q.1902.3
+HighLayerCompatibility{B2:b2} ::=
+ OCTET STRING(SIZE (highLayerCompatibilityLength))
+
+-- Indicates the teleservice. For encoding, DSS1 (Q.931) is used.
+HoldCause ::= OCTET STRING
+
+-- defined by network operator.
+-- Indicates the cause for holding a call.
+-- Its content is network operator specific
+initialCallSegment INTEGER ::=
+ 1
+
+-- the initial call segment represents the call segment that was there when the CSA was created, ie. the CS where
+-- the trigger took place or the CS that was created by an InitateCallAttempt within a TC-BEGIN message,
+-- unless InitiateCallAttemt was proceeded by a CreateCallSegmanrAssociation operation.
+INprofile{B1:b1, B2:b2} ::= SEQUENCE {
+ actionOnProfile [0] ActionOnProfile,
+ tDPIdentifier [1] TDPIdentifier{b2},
+ dPName [2] EventTypeBCSM OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- Contains profile elements that can be downloaded in the SSF using the setServiceProfile operation.
+INServiceCompatibilityIndication{B2:b2} ::=
+ SEQUENCE SIZE (1..numOfInServiceCompatibilityIndLength) OF Entry
+
+-- Identifies a list of service classes triggered during the lifetime of a call
+INServiceCompatibilityResponse ::=
+ Entry
+
+-- Used to override the last entry in INServiceCompatibilityIndication
+Interval ::= INTEGER(-1..60000)
+
+-- Units are milliseconds. A -1 value denotes infinite.
+IPAvailable{B2:b2} ::=
+ OCTET STRING(SIZE (minIPAvailableLength..maxIPAvailableLength))
+
+-- defined by network operator.
+-- Indicates that the resource is available.
+-- Its content is network operator specific
+IPRelatedInformation{B2:b2} ::= SEQUENCE {
+ alternativeCalledPartyIds [0] AlternativeIdentities{b2} OPTIONAL,
+ alternativeOriginatingPartyIds [1] AlternativeIdentities{b2} OPTIONAL,
+ alternativeOriginalCalledPartyIds [2] AlternativeIdentities{b2} OPTIONAL,
+ alternativeRedirectingPartyIds [3] AlternativeIdentities{b2} OPTIONAL,
+ ...
+}
+
+-- contains information that are specific to interworking with IP-based networks
+IPRoutingAddress{B2:b2} ::=
+ CalledPartyNumber{b2}
+
+-- Indicates the routing address for the IP.
+IPSSPCapabilities{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minIPSSPCapabilitiesLength..maxIPSSPCapabilitiesLength))
+
+-- defined by network operator.
+-- Indicates the SRF resources available at the SSP.
+-- Its content is network operator specific
+ISDNAccessRelatedInformation{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minISDNAccessRelatedInfoLength..
+ maxISDNAccessRelatedInfoLength))
+
+-- Indicates the destination user network interface related information. Refer to the Q.763 Access
+-- Transport parameter for encoding.
+LegID ::= CHOICE {sendingSideID [0] LegType,
+ receivingSideID [1] LegType
+}
+
+-- Indicates a reference to a specific party in a call. OPTIONAL denotes network operator specific use
+-- with a choice of unilateral ID assignment or bilateral ID assignment.
+-- OPTIONAL for LegID also denotes the following:
+--when only one party exists in the call, this parameter is not needed (as no ambiguity exists);
+--when more than one party exists in the call, one of the following alternatives applies:
+-- 1. LegID is present and indicates which party is concerned.
+-- 2. LegID is not present and a default value is assumed (e.g. calling party in the case of the
+-- ApplyCharging operation).
+-- Choice between these two alternatives is kept a network operator option.
+-- sendingSideID is used where legID is sent from the SCF to the SSF and
+-- receivingSideID is used where SCF receives legID from the SSF.
+LegType ::= OCTET STRING(SIZE (1))
+
+leg1 LegType ::= '01'H
+
+leg2 LegType ::= '02'H
+
+LocationNumber{B2:b2} ::=
+ OCTET STRING(SIZE (minLocationNumberLength..maxLocationNumberLength))
+
+-- Indicates the Location Number for the calling party. Refer to Q.763 (White book) for encoding.
+MaximumNumberOfCounters{B2:b2} ::= INTEGER(1..numOfCounters)
+
+MidCallControlInfo{B2:b2} ::=
+ SEQUENCE SIZE (minMidCallControlInfoNum..maxMidCallControlInfoNum) OF
+ SEQUENCE {midCallInfoType [0] MidCallInfoType{b2},
+ midCallReportType
+ [1] ENUMERATED {inMonitoringState(0), inAnyState(1)}
+ DEFAULT inMonitoringState,
+ ...}
+
+MidCallInfo{B2:b2} ::= SEQUENCE {iNServiceControlCode [0] Digits{b2},
+ ...
+}
+
+MidCallInfoType{B2:b2} ::= SEQUENCE {
+ iNServiceControlCodeLow [0] Digits{b2},
+ iNServiceControlCodeHigh [1] Digits{b2} OPTIONAL,
+ ...
+}
+
+MiscCallInfo ::= SEQUENCE {
+ messageType [0] ENUMERATED {request(0), notification(1)},
+ dpAssignment
+ [1] ENUMERATED {individualBased(0), groupBased(1), switchBased(2)}
+ OPTIONAL
+}
+
+-- Indicates detection point related information.
+-- Note: "Switch based "is used with the same meaning as the previous used term "office based"
+MinAcceptableATMTrafficDescriptor{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minMinAcceptableATMTrafficDescriptorLength..
+ maxMinAcceptableATMTrafficDescriptorLength))
+
+-- Indicates the MinimumAcceptableATMTrafficDescriptor Information Element. Refer to Q.2931 for encoding.
+ModifyResultType ::= ENUMERATED {modifyAcknowledge(0), modifyReject(1)
+}
+
+-- Indicates whether a bearer modification attempt has been successful or not
+MonitoringCriteria ::= CHOICE {
+ threshold [0] Integer4,
+ interval [1] Interval
+}
+
+-- Indicates the criteria for route monitoring
+MonitorMode ::= ENUMERATED {
+ interrupted(0), notifyAndContinue(1), transparent(2)}
+
+-- Indicates the event is relayed and/or processed by the SSF.
+MonitoringTimeOut ::= CHOICE {
+ duration [0] Duration,
+ stopTime [1] DateAndTime
+}
+
+-- Indicates when a route moniroting procedure shall be stopped.
+NumberingPlan ::= OCTET STRING(SIZE (1))
+
+-- Indicates the numbering plan for collecting the user information. Refer to the Q.763 Numbering Plan
+-- Indicator field for encoding.
+NumberOfDigits ::= INTEGER(1..255)
+
+-- Indicates the number of digits to be collected
+OriginalCalledPartyID{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minOriginalCalledPartyIDLength..
+ maxOriginalCalledPartyIDLength))
+
+-- Indicates the original called number. d Refer to the Q.763 Original Called Number for encoding.
+ProfileIdentifier{B2:b2} ::= CHOICE {
+ access [0] CalledPartyNumber{b2},
+ group [1] FacilityGroup
+}
+
+-- Please note that 'CalledPartyNumber' is used to address a subscriber access line.
+--The data type was reused from the existing types to avoid the definition of a new one.
+QoSParameter{B2:b2} ::=
+ OCTET STRING(SIZE (minQoSParameterLength..maxQoSParameterLength))
+
+-- Indicates the QoS. Refer to Q.2961 for encoding.
+Reason{B2:b2} ::= OCTET STRING(SIZE (minReasonLength..maxReasonLength))
+
+-- Its content is network operator specific
+RedirectingPartyID{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minRedirectingPartyIDLength..maxRedirectingPartyIDLength))
+
+-- Indicates redirecting number. Refer to the Q.763 Redirecting number for encoding.
+RedirectionInformation ::= OCTET STRING(SIZE (2))
+
+-- Indicates redirection information. Refer to the Q.763 Redirection Information for encoding.
+RedirectReason ::= OCTET STRING(SIZE (1))
+
+-- Indicates redirection reason information. Refer to the "Invoking Pivot Reason" parameter of Q.763 for encoding.
+RegistratorIdentifier ::= OCTET STRING
+
+-- Its content is network operator specific
+ReportCondition ::= ENUMERATED {statusReport(0), timerExpired(1), canceled(2)
+}
+
+-- ReportCondition specifies the cause of sending "StatusReport" operation to the SCF
+RequestedInformationList{B2:b2} ::=
+ SEQUENCE SIZE (1..numOfInfoItems) OF RequestedInformation{b2}
+
+RequestedInformationTypeList{B2:b2} ::=
+ SEQUENCE SIZE (1..numOfInfoItems) OF RequestedInformationType
+
+RequestedInformation{B2:b2} ::= SEQUENCE {
+ requestedInformationType [0] RequestedInformationType,
+ requestedInformationValue [1] RequestedInformationValue{b2},
+ ...
+}
+
+RequestedInformationType ::= ENUMERATED {
+ callAttemptElapsedTime(0), callStopTime(1), callConnectedElapsedTime(2),
+ calledAddress(3), releaseCause(30)}
+
+RequestedInformationValue{B2:b2} ::= CHOICE {
+ callAttemptElapsedTimeValue [0] INTEGER(0..255),
+ callStopTimeValue [1] DateAndTime,
+ callConnectedElapsedTimeValue [2] Integer4,
+ calledAddressValue [3] Digits{b2},
+ releaseCauseValue [30] Cause{b2}
+}
+
+-- The callAttemptElapsedTimeValue is specified in seconds.
+--The unit for the callConnectedElapsedTimeValue is 100 milliseconds
+RequestedUTSI{B2:b2} ::= SEQUENCE {
+ uSIServiceIndicator [0] USIServiceIndicator{b2},
+ uSImonitorMode [1] USIMonitorMode,
+ ...
+}
+
+RequestedUTSIList{B2:b2} ::=
+ SEQUENCE SIZE (minRequestedUTSINum..maxRequestedUTSINum) OF
+ RequestedUTSI{b2}
+
+ResourceID{B2:b2} ::= CHOICE {
+ lineID [0] Digits{b2},
+ facilityGroupID [1] FacilityGroup,
+ facilityGroupMemberID [2] INTEGER,
+ trunkGroupID [3] INTEGER
+}
+
+-- Indicates a logical identifier for the physical termination resource.
+ResourceStatus ::= ENUMERATED {busy(0), idle(1)}
+
+ResponseCondition ::= ENUMERATED {intermediateResponse(0), lastResponse(1)
+
+-- additional values are outside the scope of this capability set
+}
+
+-- ResponseCondition is used to identify the reason why ServiceFilteringResponse operation is sent.
+RouteCountersValue{B2:b2} ::=
+ SEQUENCE SIZE (1..maxNbOfRoutes) OF RouteCountersAndValue{b2}
+
+RouteCountersAndValue{B2:b2} ::= SEQUENCE {
+ route [0] Route{b2},
+ counterID [1] CounterID,
+ counterValue [2] Integer4,
+ ...
+}
+
+-- Used to assign a counter to a route for monitoring purposes.
+RouteList{B2:b2} ::= SEQUENCE SIZE (1..maxNbOfRoutes) OF Route{b2}
+
+-- Indicates a list of trunk groups or a list of route index..
+Route{B2:b2} ::=
+ OCTET STRING(SIZE (minRouteListLength..maxRouteListLength))
+
+-- Indicates a trunk group or a route index. .
+-- Its content is network operator specific
+RouteingNumber{B2:b2} ::=
+ OCTET STRING(SIZE (minRouteingNumberLength..maxRouteingNumberLength))
+
+-- Indicates the Routeing Number. Refer to Q.763 parameter Network Routeing Number for encoding.
+ScfID{B2:b2} ::= OCTET STRING(SIZE (minScfIDLength..maxScfIDLength))
+
+-- defined by network operator.
+-- Indicates the SCF identity.
+-- Used to derive the INAP address of the SCF to establish a connection between a requesting FE
+-- and the specified SCF.
+-- When ScfID is used in an operation which may cross an internetwork boundary, its encoding must
+-- be understood in both networks; this requires bilateral agreement on the encoding.
+-- Refer to 3.5/Q.713 "calling party address" parameter for encoding.
+-- It indicates the SCCP address e.g. Global Title of the SCF,.
+-- Other encoding schemes are also possible as a network specific option..
+SCIBillingChargingCharacteristics{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minSCIBillingChargingLength..maxSCIBillingChargingLength))
+
+-- This parameter indicates the billing and/or charging characteristics.
+-- Its content is network signalling / operator specific
+-- An example datatype definition for this parameter is given below:
+-- SCIBillingChargingCharacteristicsEmbeddedType ::= CHOICE {
+-- chargeLevel [0] OCTET STRING (SIZE (min..max),
+-- chargePulses [1] Integer4,
+-- chargeMessages [2] OCTET STRING (SIZE (min..max)
+-- }
+-- Depending on the applied charging scenario the following information elements
+-- can be included (refer to Q.1214 Appendix II):
+-- chargeLevel (scenario 3.2)
+-- chargePulses (scenario 3.2)
+-- chargeMessages (scenario 3.2)
+SDSSinformation{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minSDSSinformationLength..maxSDSSinformationLength))
+
+-- Its content is network operator specific
+ServiceAddressInformation ::= SEQUENCE {
+ serviceKey [0] ServiceKey OPTIONAL,
+ miscCallInfo [1] MiscCallInfo,
+ triggerType [2] TriggerType OPTIONAL,
+ ...
+}
+
+-- Information that represents the result of trigger analysis and allows the SCF to choose the appropriate service logic
+ServiceInteractionIndicators{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minServiceInteractionIndicatorsLength..
+ maxServiceInteractionIndicatorsLength))
+
+-- Indicators which are exchanged between SSF and SCF to resolve interactions between IN based services
+-- and network based services, respectively between different IN based services.
+-- Its content is network signalling/operator specific
+-- Note this parameter is kept in this Recommendation for backward compatibility to IN CS-1R,
+-- for this Recommendation see parameter ServiceInteractionIndicatorsTwo
+ServiceInteractionIndicatorsTwo ::= SEQUENCE {
+ forwardServiceInteractionInd [0] ForwardServiceInteractionInd OPTIONAL,
+ -- applicable to operations IDP, CON, ICA, CWA.
+ backwardServiceInteractionInd
+ [1] BackwardServiceInteractionInd OPTIONAL,
+ --applicable to operations IDP, CON, CTR, ETC, CWA.
+ bothwayThroughConnectionInd [2] BothwayThroughConnectionInd OPTIONAL,
+ -- applicable to operations CTR, ETC.
+ suspendTimer [3] SuspendTimer OPTIONAL,
+ -- applicable to operations CON, ICA CWA.
+ connectedNumberTreatmentInd [4] ConnectedNumberTreatmentInd OPTIONAL,
+ --applicable to operations CON, CTR, ETC, CWA .
+ suppressCallDiversionNotification [5] BOOLEAN OPTIONAL,
+ -- applicable to CON, ICA, CWA
+ suppressCallTransferNotification [6] BOOLEAN OPTIONAL,
+ -- applicable to CON, ICA, CWA
+ allowCdINNoPresentationInd [7] BOOLEAN OPTIONAL,
+ -- applicable to CON, ICA CWA
+ -- indicates whether the Address Presentation restricted indicator of the ISUP
+ -- "called IN number" shall be set to presentation allowed (TRUE)
+ -- or presentation restricted (FALSE). Refer to Rec. Q.1601.
+ userDialogueDurationInd [8] BOOLEAN DEFAULT TRUE,
+ -- applicable to operations CTR, ETC.
+ -- applicable when interaction with the user is required during call set-up
+ -- The interaction TRUE means the user interaction may last longer than 90 seconds.
+ -- Otherwise the indicator should be set to FALSE. Used for delaying ISUP T9 timer.
+ overrideLineRestrictions [9] BOOLEAN DEFAULT FALSE,
+ -- only applicable to operations (e.g. Connect) which lead to a transition to a PIC before
+ -- the AuthorizeCallSetup PIC.
+ -- When set to TRUE, this parameter indicates that some facility restrictions
+ -- should not be checked when the authority to place a call is verified in the
+ --Authorize_Call_Setup PIC.
+ -- Which restrictions are actually overwriden is network specific.
+ suppressVPNAPP [10] BOOLEAN DEFAULT FALSE,
+ -- applicable to CWA, CON, ICA.
+ -- indicates whether to allow or stop (suppress) the forward transmission of the VPN PSS1 capability.
+ -- When set to TRUE, the exchange, on receipt of this parameter, will not transmit for this call
+ -- any ISUP Application transport parameter with Application Context Identifier set to " PSS1 ASE (VPN) "
+ -- This indicator is populated by the SCF, where the SCF and SSF in conjunction have provided the
+ -- outgoing gateway PINX functionality as required by PSS1.
+ calledINNumberOverriding [11] BOOLEAN OPTIONAL,
+ -- applicable to CON and CWA
+ -- indicates whether the generation/override of the ISUP
+ -- "called IN number" is allowed (TRUE) or not allowed (FALSE)
+ -- If set to FALSE, the ISUP shall not generate a "called IN number" or override
+ -- an already existing "called IN number".
+ -- if absent , the default will be "generation/overriding allowed" (TRUE).
+ redirectServiceTreatmentInd
+ [12] SEQUENCE {redirectReason [0] RedirectReason OPTIONAL,
+ ...} OPTIONAL,
+ --applicable to operation CON .
+ --if absent , call redirection service is not allowed
+ --Existence of this parameter requests Pivot Routing or Redirection supplementary service to be
+ --allowed for-the new routing address specified in the Connect operation.
+ --If absent, neither Pivot Routing nor Redirection service is allowed.
+ -- The redirectReason Parameter indicates the reason for invoking Pivot Routing / Redirection service
+ -- Whether the service is actually invoked depends only on SSF conditions.
+ --In this capability set the SCF will not know all the SSF conditions.
+ -- To send that kind of conditions is out of scope of this capability set.
+ --If the service is allowed, the parameter must be sent in the ISUP-FAC message (Pivot Routing case)
+ -- or ISUP-REL message (Redirection case) as the service is invoked,
+ nonCUGCall [13] NULL OPTIONAL,
+ -- applicable to CON and CWA
+ -- This parameter when present, indicates that no parameters for CUG shall be used for the call
+ -- (i.e. the call shall be a non-CUG call). This parameter when not present, indicates
+ -- one of three things:
+ -- a) continue with modified CUG information (when one or more of either CUG Interlock Code and
+ -- Outgoing Access Indicator are present); or
+ -- b) continue with original CUG information (when neither CUG Interlock Code or Outgoing Access Indicator
+ -- are present).
+ -- c) continue with the original non-CUG call.
+ ...
+}
+
+-- ServiceInteractionIndicatorsTwo contains Indicators which are exchanged between SSF and SCF to resolve interactions
+--between IN based services and network based services, respectively between different IN based services.
+ServiceKey ::=
+ Integer4
+
+-- Information that allows the SCF to choose the appropriate service logic.
+ServiceProfileIdentifier ::= OCTET STRING
+
+-- Indicates a particular ISDN terminal. Refer to Q.932 for encoding.
+ServingAreaID{B2:b2} ::=
+ LocationNumber{b2}
+
+-- Identifies the local serving area where a network provider operates. Uses the LocationNumber
+-- format which is based on the Q.763 Location Number format.
+-- The Nature of Address indicator field shall be set to "Spare" (value 00000000).
+-- The Numbering Plan Indicator field shall be set to "Spare" (value 000).
+-- Defined by the network operator.
+SFBillingChargingCharacteristics{B2:b2} ::=
+ OCTET STRING
+ (SIZE (minSFBillingChargingLength..maxSFBillingChargingLength))
+
+-- This parameter indicates the billing and/or charging characteristics for filtered calls.
+-- Its content is network signalling/operator specific.
+-- Actual format and encoding is outside the scope of this capability set.
+SupportedTriggers TRIGGER ::=
+ {...}
+
+SuspendTimer ::= INTEGER(0..120)
+
+--value in seconds
+TDPIdentifier{B2:b2} ::= CHOICE {
+ oneTrigger INTEGER,
+ triggers [1] Triggers{b2}
+}
+
+TerminalType ::= ENUMERATED {
+ unknown(0), dialPulse(1), dtmf(2), isdn(3), isdnNoDtmf(4), spare(16)
+}
+
+-- Identifies the terminal type so that the SCF can specify, to the SRF, the appropriate type of capability
+-- (voice recognition, DTMF, display capability, etc.). Since present signalling systems do not convey
+-- terminal type, this parameter applies only at originating or terminating local exchanges.
+TimerID ::= ENUMERATED {tssf(0)}
+
+-- Indicates the timer to be reset.
+TimerValue ::= Integer4
+
+-- Indicates the timer value (in seconds).
+TravellingClassMark{B2:b2} ::=
+ LocationNumber{b2}
+
+-- Indicates travelling class mark information.
+-- Uses the LocationNumber format which is based on the Q.763 Location Number format.
+-- The Nature of Address indicator field shall be set to "Spare" (value 00000000).
+-- The Numbering Plan Indicator field shall be set to "Spare" (value 000).
+-- Maximum 2 digits.
+TriggerData ::= SEQUENCE {
+ triggerId [0] TRIGGER.&id({SupportedTriggers}),
+ triggerPar [1] TRIGGER.&Parameter({SupportedTriggers}{@triggerId}),
+ ...
+}
+
+-- Contains a trigger identifier and the relevant trigger parameters
+TriggerDataIdentifier{B1:b1, B2:b2} ::= SEQUENCE {
+ triggerID [0] EventTypeBCSM,
+ profile [1] ProfileIdentifier{b2},
+ extensions [2] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- It is outside the scope of this capability set whether all TDP types really apply
+TriggerDPType ::= ENUMERATED {tdp-r(0), tdp-n(1)}
+
+TriggerResults{B2:b2} ::= SEQUENCE SIZE (1..numOfTriggers) OF TriggerResult
+
+TriggerResult ::= SEQUENCE {
+ tDPIdentifer [0] INTEGER,
+ actionPerformed [1] ActionPerformed,
+ dPName [2] EventTypeBCSM OPTIONAL,
+ ...
+}
+
+Triggers{B2:b2} ::= SEQUENCE SIZE (1..numOfTriggers) OF Trigger
+
+Trigger ::= SEQUENCE {
+ tDPIdentifier [0] INTEGER,
+ dpName [1] EventTypeBCSM OPTIONAL,
+ ...
+}
+
+TriggerStatus ::= ENUMERATED {
+ created(0), alreadyExist(1), deleted(2), unknownTrigger(3)}
+
+TriggerType ::= ENUMERATED {
+ featureActivation(0), verticalServiceCode(1), customizedAccess(2),
+ customizedIntercom(3), emergencyService(12), aFR(13), sharedIOTrunk(14),
+ offHookDelay(17), channelSetupPRI(18), tNoAnswer(25), tBusy(26),
+ oCalledPartyBusy(27), oNoAnswer(29), originationAttemptAuthorized(30),
+ oAnswer(31), oDisconnect(32), termAttemptAuthorized(33), tAnswer(34),
+ tDisconnect(35), oModifyRequest(100), tModifyRequest(101)}
+
+-- The type of trigger which caused call suspension
+-- 4-11: Reserved; 15,16: Reserved; 19-24: Reserved
+USIInformation{B2:b2} ::=
+ OCTET STRING(SIZE (minUSIInformationLength..maxUSIInformationLength))
+
+-- Its content is network signalling/operator specific
+USIMonitorMode ::= ENUMERATED {monitoringActive(0), monitoringInactive(1)
+}
+
+-- Indicates if the monitoring relationship for the specified UTSI IE should be activated or deactivated.
+USIServiceIndicator{B2:b2} ::= CHOICE {
+ global OBJECT IDENTIFIER,
+ local
+ OCTET STRING
+ (SIZE (minUSIServiceIndicatorLength..maxUSIServiceIndicatorLength))
+}
+
+-- In case of local its content is network signalling/operator specific
+VPNIndicator ::= BOOLEAN
+
+-- This parameter is set to TRUE if the originating call part supports VPN with PSS1 information flows
+-- The Definition of range of constants Follows
+END
+
+-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
+
diff --git a/asn1/inap/IN-SSF-SCF-ops-args.asn b/asn1/inap/IN-SSF-SCF-ops-args.asn
new file mode 100644
index 0000000000..e11f8a929a
--- /dev/null
+++ b/asn1/inap/IN-SSF-SCF-ops-args.asn
@@ -0,0 +1,2359 @@
+-- $Id: IN-CS-1-Datatypes.asn 22021 2007-06-01 19:52:26Z etxrab $
+-- Small modifications made to the original due to as2wrs shortfalls, to be corrected.
+-- Module IN-SSF-SCF-ops-args (Q.1248.2:07/2001)
+IN-SSF-SCF-ops-args {itu-t recommendation q 1248 modules(1)
+ in-ssf-scf-ops-args(8) version1(0)} DEFINITIONS IMPLICIT TAGS ::=
+BEGIN
+
+IMPORTS
+ common-classes, common-datatypes, errortypes, scf-srf-classes,
+ scf-srf-datatypes, ssf-scf-classes, ssf-scf-datatypes, operationcodes,
+ ros-InformationObjects
+ FROM IN-object-identifiers {itu-t recommendation q 1248 modules(1)
+ in-object-identifiers(0) version1(0)}
+ OPERATION
+ FROM Remote-Operations-Information-Objects ros-InformationObjects
+ COMMON-BOUNDS
+ FROM IN-common-classes common-classes
+ SCF-SSF-BOUNDS
+ FROM IN-SSF-SCF-Classes ssf-scf-classes
+ SCF-SRF-BOUNDS
+ FROM IN-SCF-SRF-Classes scf-srf-classes
+ opcode-activateServiceFiltering, opcode-activityTest,
+ opcode-analysedInformation, opcode-analyseInformation,
+ opcode-applyCharging, opcode-applyChargingReport,
+ opcode-assistRequestInstructions, opcode-authorizeTermination,
+ opcode-callFiltering, opcode-callGap, opcode-callInformationReport,
+ opcode-callInformationRequest, opcode-cancel,
+ opcode-cancelStatusReportRequest, opcode-collectedInformation,
+ opcode-collectInformation, opcode-connect, opcode-connectToResource,
+ opcode-continue, opcode-continueWithArgument,
+ opcode-createCallSegmentAssociation, opcode-createOrRemoveTriggerData,
+ opcode-disconnectForwardConnection, opcode-dFCWithArgument,
+ opcode-disconnectLeg, opcode-entityReleased,
+ opcode-establishTemporaryConnection, opcode-eventNotificationCharging,
+ opcode-eventReportBCSM, opcode-eventReportFacility,
+ opcode-facilitySelectedAndAvailable, opcode-furnishChargingInformation,
+ opcode-holdCallInNetwork, opcode-initialDP, opcode-initiateCallAttempt,
+ opcode-manageTriggerData, opcode-mergeCallSegments,
+ opcode-moveCallSegments, opcode-oAbandon, opcode-oAnswer,
+ opcode-oCalledPartyBusy, opcode-oDisconnect, opcode-oMidCall,
+ opcode-moveLeg, opcode-oNoAnswer, opcode-originationAttempt,
+ opcode-originationAttemptAuthorized, opcode-oSuspended, opcode-reconnect,
+ opcode-releaseCall, opcode-reportUTSI, opcode-requestCurrentStatusReport,
+ opcode-requestEveryStatusChangeReport,
+ opcode-requestFirstStatusMatchReport,
+ opcode-requestNotificationChargingEvent, opcode-requestReportBCSMEvent,
+ opcode-requestReportUTSI, opcode-requestReportFacilityEvent,
+ opcode-resetTimer, opcode-monitorRouteReport, opcode-monitorRouteRequest,
+ opcode-routeSelectFailure, opcode-selectFacility, opcode-selectRoute,
+ opcode-sendChargingInformation, opcode-sendFacilityInformation,
+ opcode-sendSTUI, opcode-serviceFilteringResponse, opcode-setServiceProfile,
+ opcode-splitLeg, opcode-statusReport, opcode-tAnswer, opcode-tBusy,
+ opcode-tDisconnect, opcode-termAttemptAuthorized,
+ opcode-terminationAttempt, opcode-tMidCall, opcode-tNoAnswer,
+ opcode-tSuspended
+ FROM IN-operationcodes operationcodes
+ Extensions{}, Integer4, InvokeID
+ FROM IN-common-datatypes common-datatypes
+ AccessCode{}, ActionIndicator, ActionPerformed,
+ AChBillingChargingCharacteristics{}, AdditionalCallingPartyNumber{},
+ AlertingPattern, ApplicationTimer, AssistingSSPIPRoutingAddress{},
+ BackwardGVNS{}, BCSMEvent{}, BearerCapability{}, BISDNParameters{},
+ CalledDirectoryNumber{}, CalledPartyBusinessGroupID, CalledPartyNumber{},
+ CalledPartySubaddress{}, CallingGeodeticLocation{},
+ CallingPartyBusinessGroupID, CallingPartyNumber{}, CallingPartysCategory,
+ CallingPartySubaddress{}, CallProcessingOperation, CallReference{},
+ CallResult{}, CallSegmentID{}, Carrier{}, Cause{}, CCSS, CGEncountered,
+ ChargeNumber{}, ChargingEvent{}, CNInfo{}, Component,
+ ComponentCorrelationID, ComponentType, ConnectionIdentifier{}, ControlType,
+ CorrelationID{}, CountersValue{}, CreateOrRemoveIndicator, CSAID{},
+ GenericIdentifier{}, GlobalCallReference{}, CUG-Index, CUG-Interlock,
+ CutAndPaste, DateAndTime, DefaultFaultHandling{}, DestinationIndex{},
+ DestinationRoutingAddress{}, Digits{}, DisplayInformation{},
+ DpSpecificCommonParameters{}, Duration, EventSpecificInformationBCSM{},
+ EventSpecificInformationCharging{}, EventTypeBCSM, EventTypeCharging{},
+ FacilityGroup, FacilityGroupMember, FCIBillingChargingCharacteristics{},
+ FeatureCode{}, FeatureRequestIndicator, FilteredCallTreatment{},
+ FilteringCharacteristics, FilteringCriteria{}, FilteringTimeOut,
+ ForwardCallIndicators, ForwardGVNS{}, ForwardingCondition, GapCriteria{},
+ GapIndicators, GapTreatment{}, GenericName{}, GenericNumbers{},
+ HighLayerCompatibility{}, HoldCause, initialCallSegment, INprofile{},
+ INServiceCompatibilityIndication{}, INServiceCompatibilityResponse,
+ IPAvailable{}, IPRelatedInformation{}, IPRoutingAddress{},
+ IPSSPCapabilities{}, ISDNAccessRelatedInformation{}, LegID, leg1,
+ LocationNumber{}, MiscCallInfo, MonitorMode, MonitoringCriteria,
+ MonitoringTimeOut, NumberingPlan, OriginalCalledPartyID{},
+ ProfileIdentifier{}, QoSParameter{}, Reason{}, RedirectingPartyID{},
+ RedirectionInformation, RegistratorIdentifier, ReportCondition,
+ RouteingNumber{}, RequestedInformationList{},
+ RequestedInformationTypeList{}, RequestedUTSIList{}, ResourceID{},
+ ResourceStatus, ResponseCondition, RouteCountersValue{}, RouteList{},
+ ScfID{}, SCIBillingChargingCharacteristics{}, SDSSinformation{},
+ ServiceInteractionIndicators{}, ServiceInteractionIndicatorsTwo,
+ ServiceKey, ServiceProfileIdentifier, TDPIdentifier, TerminalType,
+ TimerID, TimerValue, TravellingClassMark{}, TriggerData,
+ TriggerDataIdentifier{}, TriggerDPType, Triggers{}, TriggerStatus,
+ TriggerResults{}, TriggerType, USIInformation{}, USIServiceIndicator{},
+ VPNIndicator
+ FROM IN-SSF-SCF-datatypes ssf-scf-datatypes
+ InformationToSend{}
+ FROM IN-SCF-SRF-datatypes scf-srf-datatypes
+ cancelFailed, eTCFailed, improperCallerResponse, missingCustomerRecord,
+ missingParameter, parameterOutOfRange, requestedInfoError, systemFailure,
+ taskRefused, unavailableResource, unexpectedComponentSequence,
+ unexpectedDataValue, unexpectedParameter, unknownLegID, unknownResource
+ FROM IN-errortypes errortypes;
+
+-- The following three definitions are local short-hand notation for convenience.
+-- B1 ::=
+-- COMMON-BOUNDS defined in Part 1 of Recommendation Q.1248
+
+-- B2 ::= SCF-SSF-BOUNDS defined in this part (Part 2) of Recommendation Q.1248
+
+-- B3 ::= SCF-SRF-BOUNDS defined in Part 3 of Recommendation Q.1248
+
+-- Operations and Arguments:
+activateServiceFiltering OPERATION ::= {
+ ARGUMENT ActivateServiceFilteringArg {b1,
+ b2,
+ b3}
+ RETURN RESULT TRUE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedParameter}
+ CODE opcode-activateServiceFiltering
+}
+
+-- Direction: SCF -> SSF, Timer: Tasf
+-- When receiving this operation, the SSF handles calls to destination in a specified manner
+-- without sending queries for every detected call. It is used for example for providing
+-- televoting or mass calling services. Simple registration functionality (counters) and
+-- announcement control may be located at the SSF. The operation initializes the specified
+-- counters in the SSF.
+ActivateServiceFilteringArg ::= SEQUENCE {
+ filteredCallTreatment [0] FilteredCallTreatment{b2, b3},
+ filteringCharacteristics [1] FilteringCharacteristics,
+ filteringTimeOut [2] FilteringTimeOut,
+ filteringCriteria [3] FilteringCriteria{b2},
+ startTime [4] DateAndTime OPTIONAL,
+ extensions [5] Extensions{b1} OPTIONAL,
+ ...
+}
+
+activityTest OPERATION ::= {
+ RETURN RESULT TRUE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-activityTest
+}
+
+-- Direction: SCF -> SSF or SSF-> SCF, Timer: Tat
+-- This operation is used to check for the continued existence of a relationship between the SCF
+-- and SSF. If the relationship is still in existence, then the SSF will respond. If no reply is
+-- received, then the SCF will assume that the SSF has failed in some way and will take the
+-- appropriate action.. As an option, this operation may be used in the reverse direction by the
+-- SSF to check for the continued existence of a relationship with the SCF.
+analysedInformation OPERATION ::= {
+ ARGUMENT AnalysedInformationArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-analysedInformation
+}
+
+-- Direction: SSF -> SCF, Timer: Tadi
+-- This operation is used to indicate availability of routing address and call type. (DP -
+-- Analysed_Info).
+AnalysedInformationArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ dialledDigits [1] CalledPartyNumber{b2} OPTIONAL,
+ callingPartyBusinessGroupID [2] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [3] CallingPartySubaddress{b2} OPTIONAL,
+ callingFacilityGroup [4] FacilityGroup OPTIONAL,
+ callingFacilityGroupMember [5] FacilityGroupMember OPTIONAL,
+ originalCalledPartyID [6] OriginalCalledPartyID{b2} OPTIONAL,
+ prefix [7] Digits{b2} OPTIONAL,
+ redirectingPartyID [8] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [9] RedirectionInformation OPTIONAL,
+ routeList [10] RouteList{b2} OPTIONAL,
+ travellingClassMark [11] TravellingClassMark{b2} OPTIONAL,
+ extensions [12] Extensions{b1} OPTIONAL,
+ featureCode [13] FeatureCode{b2} OPTIONAL,
+ accessCode [14] AccessCode{b2} OPTIONAL,
+ carrier [15] Carrier{b2} OPTIONAL,
+ componentType [16] ComponentType OPTIONAL,
+ component [17] Component OPTIONAL,
+ componentCorrelationID [18] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+analyseInformation OPERATION ::= {
+ ARGUMENT AnalyseInformationArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-analyseInformation
+}
+
+-- Direction: SCF -> SSF, Timer: Tai
+-- This operation is used to request the SSF to perform the originating basic call processing actions
+-- to analyse destination information that is either collected from a calling party or provided by the SCF
+-- (e.g. for number translation). This includes actions to validate the information according to an office
+-- or customized dialing plan, and if valid, to determine call termination information, to include the called
+-- party address, the type of call (e.g. intra-network or inter-network), and carrier (if inter-network).
+-- If the called party is not served by the SSF, the SSF also determines a route index based on the called
+-- party address and class of service, where the route index points to a list of outgoing trunk groups.
+AnalyseInformationArg ::= SEQUENCE {
+ destinationRoutingAddress [0] DestinationRoutingAddress{b2},
+ alertingPattern [1] AlertingPattern OPTIONAL,
+ iSDNAccessRelatedInformation
+ [2] ISDNAccessRelatedInformation{b2} OPTIONAL,
+ originalCalledPartyID [3] OriginalCalledPartyID{b2} OPTIONAL,
+ extensions [4] Extensions{b1} OPTIONAL,
+ callingPartyNumber [5] CallingPartyNumber{b2} OPTIONAL,
+ callingPartysCategory [6] CallingPartysCategory OPTIONAL,
+ calledPartyNumber [7] CalledPartyNumber{b2} OPTIONAL,
+ chargeNumber [8] ChargeNumber{b2} OPTIONAL,
+ travellingClassMark [9] TravellingClassMark{b2} OPTIONAL,
+ carrier [10] Carrier{b2} OPTIONAL,
+ serviceInteractionIndicators
+ [11] ServiceInteractionIndicators{b2} OPTIONAL,
+ iNServiceCompatibilityResponse
+ [12] INServiceCompatibilityResponse OPTIONAL,
+ forwardGVNS [13] ForwardGVNS{b2} OPTIONAL,
+ backwardGVNS [14] BackwardGVNS{b2} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [15] ServiceInteractionIndicatorsTwo OPTIONAL,
+ correlationID [16] CorrelationID{b2} OPTIONAL,
+ scfID [17] ScfID{b2} OPTIONAL,
+ callSegmentID [18] CallSegmentID{b2} OPTIONAL,
+ legToBeCreated [19] LegID OPTIONAL,
+ ...
+}
+
+-- OPTIONAL parameters are only provided if modifications desired to basic call processing values
+applyCharging OPERATION ::= {
+ ARGUMENT ApplyChargingArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | unexpectedComponentSequence | unexpectedParameter |
+ unexpectedDataValue | parameterOutOfRange | systemFailure | taskRefused |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-applyCharging
+}
+
+-- Direction: SCF -> SSF, Timer: Tac
+-- This operation is used for interacting from the SCF with the SSF charging mechanisms.
+-- The ApplyChargingReport operation provides the feedback from the SSF to the SCF.
+-- This operation is can also be used to instruct the SSF to release the call regarding some condition.
+ApplyChargingArg ::= SEQUENCE {
+ aChBillingChargingCharacteristics [0] AChBillingChargingCharacteristics{b2},
+ partyToCharge [2] LegID OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ releaseIndication [4] BOOLEAN OPTIONAL,
+ releaseCause [5] Cause{b2} OPTIONAL,
+ ...
+}
+
+-- The TAG value 1 should not be used for future extensions (used in CS-1 by regions).
+-- The partyToCharge parameter indicates the party in the call to which the ApplyCharging operation
+-- should be applied. If it is not present, then it is applied to the A-party
+-- The releaseIndicator shall be present and set to TRUE if the release condition is specified in the
+-- aCHBillingCharacteristics parameter.
+applyChargingReport OPERATION ::= {
+ ARGUMENT ApplyChargingReportArg {b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | unexpectedComponentSequence | unexpectedParameter |
+ unexpectedDataValue | parameterOutOfRange | systemFailure | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-applyChargingReport
+}
+
+-- Direction: SSF -> SCF, Timer: Tacr
+-- This operation is used by the SSF to report to the SCF the occurrence of a specific charging event
+-- as requested by the SCF using the ApplyCharging operation.
+ApplyChargingReportArg ::=
+ CallResult{b2}
+
+-- Note: When the SSF sends the ApplyChargingReport operation as the last event from the Call Segment, the
+-- lastEventIndicator parameter is to indicate whether the event is last to the SCF and should be included
+-- into the CallResult parameter.
+assistRequestInstructions OPERATION ::= {
+ ARGUMENT AssistRequestInstructionsArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-assistRequestInstructions
+}
+
+-- Direction: SSF -> SCF or SRF -> SCF, Timer: Tari
+-- This operation is used when there is an assist or a hand-off procedure and may be sent by the SSF
+-- or SRF to the SCF. This operation is sent by the assisting SSF to SCF, when the initiating SSF has
+-- set up a connection to the SRF or to the assisting SSF as a result of receiving an EstablishTemporaryConnection
+-- or Connect/SelectRoute operation (in the case of hand-off) from the SCF.
+AssistRequestInstructionsArg ::= SEQUENCE {
+ correlationID [0] CorrelationID{b2},
+ iPAvailable [1] IPAvailable{b2} OPTIONAL,
+ iPSSPCapabilities [2] IPSSPCapabilities{b2} OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- OPTIONAL denotes network operator specific use. The value of the correlationID may be the
+-- Called Party Number supplied by the initiating SSF.
+authorizeTermination OPERATION ::= {
+ ARGUMENT AuthorizeTerminationArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-authorizeTermination
+}
+
+-- Direction: SCF -> SSF. Timer: Tatr
+-- This operation is used to request the SSF to resume terminating call processing action at the
+-- Authorize_Termination PIC of the call based on the information received from the SCF.
+AuthorizeTerminationArg ::= SEQUENCE {
+ alertingPattern [0] AlertingPattern OPTIONAL,
+ callingPartyNumber [1] CallingPartyNumber{b2} OPTIONAL,
+ destinationNumberRoutingAddress [2] CalledPartyNumber{b2} OPTIONAL,
+ displayInformation [3] DisplayInformation{b2} OPTIONAL,
+ iSDNAccessRelatedInformation
+ [4] ISDNAccessRelatedInformation{b2} OPTIONAL,
+ originalCalledPartyID [5] OriginalCalledPartyID{b2} OPTIONAL,
+ travellingClassMark [6] TravellingClassMark{b2} OPTIONAL,
+ extensions [7] Extensions{b1} OPTIONAL,
+ iNServiceCompatibilityResponse [8] INServiceCompatibilityResponse OPTIONAL,
+ forwardGVNS [9] ForwardGVNS{b2} OPTIONAL,
+ backwardGVNS [10] BackwardGVNS{b2} OPTIONAL,
+ legID [11] LegID OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [12] ServiceInteractionIndicatorsTwo OPTIONAL,
+ scfID [13] ScfID{b2} OPTIONAL,
+ ...
+}
+
+-- OPTIONAL parameters are only provided if modifications are desired to basic call processing values.
+callFiltering OPERATION ::= {
+ ARGUMENT CallFilteringArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-callFiltering
+}
+
+-- Direction: SCF -> SSF, Timer: Tcf
+-- This operation is used to allow the SCF to influence basic call gapping procedures based in the CCF by sending information from the SCF to the SSF. The SSF relays the received information transparently to the CCF. This way, the SCF can influence the rate at which call attempts are allowed through. The operation thus influences the filtering of calls, as opposed to service requests as is done by the Callgap operation.
+CallFilteringArg ::= SEQUENCE {
+ destinationIndex [0] DestinationIndex{b2},
+ gapIndicators [1] GapIndicators,
+ registratorIdentifier [2] RegistratorIdentifier OPTIONAL,
+ ...,
+-- ...,
+ extensions [3] Extensions{b1} OPTIONAL
+}
+
+-- OPTIONAL denotes network operator optional.
+callGap OPERATION ::= {
+ ARGUMENT CallGapArg {b1,
+ b2,
+ b3}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-callGap
+}
+
+-- Direction: SCF -> SSF, Timer: Tcg
+-- This operation is used to request the SSF to reduce the rate at which specific service requests are sent to
+-- the SCF. Use of this operation by the SCF to gap queries and updates at the SDF is outside the scope of this capability set .
+CallGapArg ::= SEQUENCE {
+ gapCriteria [0] GapCriteria{b2},
+ gapIndicators [1] GapIndicators,
+ controlType [2] ControlType OPTIONAL,
+ gapTreatment [3] GapTreatment{b2, b3} OPTIONAL,
+ extensions [4] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- OPTIONAL denotes network operator optional. If gapTreatment is not present, the SSF will use
+-- a default treatment depending on network operator implementation.
+callInformationReport OPERATION ::= {
+ ARGUMENT CallInformationReportArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-callInformationReport
+}
+
+-- Direction: SSF -> SCF, Timer: Tcirp
+-- This operation is used to send specific call information for a single call to the SCF as requested by the SCF
+-- in a previous CallInformationRequest.
+CallInformationReportArg ::= SEQUENCE {
+ requestedInformationList [0] RequestedInformationList{b2},
+ correlationID [1] CorrelationID{b2} OPTIONAL,
+ extensions [2] Extensions{b1} OPTIONAL,
+ legID [3] LegID OPTIONAL,
+ lastEventIndicator [4] BOOLEAN DEFAULT FALSE,
+ ...
+}
+
+-- OPTIONAL denotes network operator optional.
+-- The lastEventIndicator parameter is set with 'TRUE' when the report is last in the Call Segment.
+-- In the CS-1, the lastEventIndicator should not be sent, and the meaning of DEFAULT is not applied. The SCF
+-- must decide whether the report is last without this parameter.
+callInformationRequest OPERATION ::= {
+ ARGUMENT CallInformationRequestArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | requestedInfoError |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter | unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-callInformationRequest
+}
+
+-- Direction: SCF -> SSF, Timer: Tcirq
+-- This operation is used to request the SSF to record specific information about a single call and report it to
+-- the SCF (with a CallInformationReport operation).
+CallInformationRequestArg ::= SEQUENCE {
+ requestedInformationTypeList [0] RequestedInformationTypeList{b2},
+ correlationID [1] CorrelationID{b2} OPTIONAL,
+ extensions [2] Extensions{b1} OPTIONAL,
+ legID [3] LegID OPTIONAL,
+ ...
+}
+
+-- OPTIONAL denotes network operator optional .
+cancel OPERATION ::= {
+ ARGUMENT CancelArg {b2}
+ RETURN RESULT FALSE
+ ERRORS {cancelFailed | missingParameter | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-cancel
+}
+
+-- Direction: SCF -> SSF, or SCF -> SRF, Timer: Tcan
+-- This operation cancels the correlated previous operation or all previous requests
+-- This operation can also be used to cancel all outstanding requests and enable the state machine (SSF)
+-- to go to idle. In this case the Cancel operation does not specify any specific operation to be cancelled.
+-- For the SCF-SRF operations that can be cancelled, refer to Part 3 of Q.1248
+CancelArg ::= CHOICE {
+ invokeID [0] InvokeID,
+ allRequests [1] NULL,
+ callSegmentToCancel
+ [2] SEQUENCE {invokeID [0] InvokeID,
+ callSegmentID [1] CallSegmentID{b2},
+ ...},
+ allRequestsForCallSegment [3] CallSegmentID{b2},
+ ...
+}
+
+-- The InvokeID has the same value as that which was used for the SCF-SRF operation, i.e. is used to identify
+-- the correlated previous SCF-SRF operation to be canccelled.
+cancelStatusReportRequest OPERATION ::= {
+ ARGUMENT CancelStatusReportRequestArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS {cancelFailed | missingParameter | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-cancelStatusReportRequest
+}
+
+-- Direction: SCF -> SSF, Timer: Tcsr
+-- This operation cancels the following processes: RequestFirstStatusMatchReport and
+-- RequestEveryStatusChangeReport.
+CancelStatusReportRequestArg ::= SEQUENCE {
+ resourceID [0] ResourceID{b2} OPTIONAL,
+ extensions [1] Extensions{b1} OPTIONAL,
+ ...
+}
+
+collectedInformation OPERATION ::= {
+ ARGUMENT CollectedInformationArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-collectedInformation
+}
+
+-- Direction: SSF -> SCF, Timer: Tcdi
+-- This operation is used to indicate availability of complete initial information package/dialing string from
+-- originating party. (This event may have already occurred in the case of en bloc signaling, in which case
+-- the waiting duration in this PIC is zero.) (DP - Collected_Info
+CollectedInformationArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ dialledDigits [1] CalledPartyNumber{b2} OPTIONAL,
+ callingPartyBusinessGroupID [2] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [3] CallingPartySubaddress{b2} OPTIONAL,
+ callingFacilityGroup [4] FacilityGroup OPTIONAL,
+ callingFacilityGroupMember [5] FacilityGroupMember OPTIONAL,
+ originalCalledPartyID [6] OriginalCalledPartyID{b2} OPTIONAL,
+ prefix [7] Digits{b2} OPTIONAL,
+ redirectingPartyID [8] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [9] RedirectionInformation OPTIONAL,
+ travellingClassMark [10] TravellingClassMark{b2} OPTIONAL,
+ extensions [11] Extensions{b1} OPTIONAL,
+ featureCode [12] FeatureCode{b2} OPTIONAL,
+ accessCode [13] AccessCode{b2} OPTIONAL,
+ carrier [14] Carrier{b2} OPTIONAL,
+ componentType [15] ComponentType OPTIONAL,
+ component [16] Component OPTIONAL,
+ componentCorrelationID [17] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+collectInformation OPERATION ::= {
+ ARGUMENT CollectInformationArg {b1,
+ b2}
+ OPTIONAL TRUE
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-collectInformation
+}
+
+-- Direction: SCF -> SSF, Timer: Tci
+-- This operation is used to request the SSF to perform the originating basic call processing actions to prompt
+-- a calling party for destination information, then collect destination information according to a specified
+-- numbering plan (e.g. for virtual private networks).
+CollectInformationArg ::= SEQUENCE {
+ alertingPattern [0] AlertingPattern OPTIONAL,
+ numberingPlan [1] NumberingPlan OPTIONAL,
+ originalCalledPartyID [2] OriginalCalledPartyID{b2} OPTIONAL,
+ travellingClassMark [3] TravellingClassMark{b2} OPTIONAL,
+ extensions [4] Extensions{b1} OPTIONAL,
+ callingPartyNumber [5] CallingPartyNumber{b2} OPTIONAL,
+ dialledDigits [6] CalledPartyNumber{b2} OPTIONAL,
+ serviceInteractionIndicators
+ [7] ServiceInteractionIndicators{b2} OPTIONAL,
+ iNServiceCompatibilityResponse [8] INServiceCompatibilityResponse OPTIONAL,
+ forwardGVNS [9] ForwardGVNS{b2} OPTIONAL,
+ backwardGVNS [10] BackwardGVNS{b2} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [11] ServiceInteractionIndicatorsTwo OPTIONAL,
+ callSegmentID [12] CallSegmentID{b2} OPTIONAL,
+ legToBeCreated [13] LegID OPTIONAL,
+ ...
+}
+
+connect OPERATION ::= {
+ ARGUMENT ConnectArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-connect
+}
+
+-- Direction: SCF -> SSF, Timer: Tcon
+-- This operation is used to request the SSF to perform the call processing actions to route or forward a call to
+-- a specified destination. To do so, the SSF may or may not use destination information from the calling party
+-- (e.g. dialed digits) and existing call setup information (e.g. route index to a list of trunk groups), depending on
+-- the information provided by the SCF.
+-- When address information is only included in the Connect operation, call processing resumes at PIC3 in
+-- the O-BCSM.
+-- When address information and routing information is included, call processing resumes at PIC4.
+ConnectArg ::= SEQUENCE {
+ destinationRoutingAddress [0] DestinationRoutingAddress{b2},
+ alertingPattern [1] AlertingPattern OPTIONAL,
+ correlationID [2] CorrelationID{b2} OPTIONAL,
+ cutAndPaste [3] CutAndPaste OPTIONAL,
+ forwardingCondition [4] ForwardingCondition OPTIONAL,
+ iSDNAccessRelatedInformation
+ [5] ISDNAccessRelatedInformation{b2} OPTIONAL,
+ originalCalledPartyID [6] OriginalCalledPartyID{b2} OPTIONAL,
+ routeList [7] RouteList{b2} OPTIONAL,
+ -- maximum number of routes is limited to 3
+ scfID [8] ScfID{b2} OPTIONAL,
+ travellingClassMark [9] TravellingClassMark{b2} OPTIONAL,
+ extensions [10] Extensions{b1} OPTIONAL,
+ carrier [11] Carrier{b2} OPTIONAL,
+ serviceInteractionIndicators
+ [26] ServiceInteractionIndicators{b2} OPTIONAL,
+ callingPartyNumber [27] CallingPartyNumber{b2} OPTIONAL,
+ callingPartysCategory [28] CallingPartysCategory OPTIONAL,
+ redirectingPartyID [29] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [30] RedirectionInformation OPTIONAL,
+ displayInformation [12] DisplayInformation{b2} OPTIONAL,
+ forwardCallIndicators [13] ForwardCallIndicators OPTIONAL,
+ genericNumbers [14] GenericNumbers{b2} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [15] ServiceInteractionIndicatorsTwo OPTIONAL,
+ iNServiceCompatibilityResponse
+ [16] INServiceCompatibilityResponse OPTIONAL,
+ forwardGVNS [17] ForwardGVNS{b2} OPTIONAL,
+ backwardGVNS [18] BackwardGVNS{b2} OPTIONAL,
+ chargeNumber [19] ChargeNumber{b2} OPTIONAL,
+ callSegmentID [20] CallSegmentID{b2} OPTIONAL,
+ legToBeCreated [21] LegID OPTIONAL,
+ sDSSinformation [22] SDSSinformation{b2} OPTIONAL,
+ calledDirectoryNumber [23] CalledDirectoryNumber{b2} OPTIONAL,
+ bearerCapability [24] BearerCapability{b2} OPTIONAL,
+ calledPartySubaddress [60] CalledPartySubaddress{b2} OPTIONAL,
+ connectionIdentifier [61] ConnectionIdentifier{b2} OPTIONAL,
+ genericIdentifier [62] GenericIdentifier{b2} OPTIONAL,
+ qOSParameter [63] QoSParameter{b2} OPTIONAL,
+ bISDNParameters [64] BISDNParameters{b2} OPTIONAL,
+ ...,
+ cug-Interlock [31] CUG-Interlock OPTIONAL,
+ cug-OutgoingAccess [32] NULL OPTIONAL,
+ ipRelatedInformation [33] IPRelatedInformation{b2} OPTIONAL
+}
+
+-- OPTIONAL parameters are only provided if modifications desired to basic call processing values
+connectToResource OPERATION ::= {
+ ARGUMENT ConnectToResourceArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-connectToResource
+}
+
+-- Direction: SCF -> SSF, Timer: Tctr
+-- This operation is used to connect a call from the SSP to the physical entity containing the SRF.
+ConnectToResourceArg ::= SEQUENCE {
+ resourceAddress
+ CHOICE {ipRoutingAddress [0] IPRoutingAddress{b2},
+ legID [1] LegID,
+ ipAddressAndLegID
+ [2] SEQUENCE {ipRoutingAddress [0] IPRoutingAddress{b2},
+ legID [1] LegID,
+ ...},
+ none [3] NULL,
+ callSegmentID [5] CallSegmentID{b2},
+ ipAddressAndCallSegment
+ [6] SEQUENCE {ipRoutingAddress [0] IPRoutingAddress{b2},
+ callSegmentID [1] CallSegmentID{b2},
+ ...}},
+ extensions [4] Extensions{b1} OPTIONAL,
+ serviceInteractionIndicators
+ [30] ServiceInteractionIndicators{b2} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [7] ServiceInteractionIndicatorsTwo OPTIONAL,
+ uSIServiceIndicator [35] USIServiceIndicator{b2} OPTIONAL,
+ uSIInformation [36] USIInformation{b2} OPTIONAL,
+ ...
+}
+
+continue OPERATION ::= {
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-continue
+}
+
+-- Direction: SCF -> SSF, Timer: Tcue
+-- This operation is used to request the SSF to proceed with call processing at the DP at which it
+-- previously suspended call processing to await SCF instructions (i.e. proceed to the next point
+-- in call in the BCSM). The SSF continues call processing without substituting new data from SCF.
+-- This operation is not valid for a single call segment CSA with more than 2 legs or a multi call segment CSA.
+continueWithArgument OPERATION ::= {
+ ARGUMENT ContinueWithArgumentArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | unexpectedComponentSequence | unexpectedParameter |
+ unexpectedDataValue | unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-continueWithArgument
+}
+
+-- Direction: SCF -> SSF, Timer: Tcwa
+-- This operation is used to request the SSF to proceed with call processing at the DP a which it previously
+-- suspended call processing to await SCF instructions.
+-- It is also used to provide additional service related information to a User (Called Party or Calling Party) whilst
+-- the call processing proceeds.
+ContinueWithArgumentArg ::= SEQUENCE {
+ legorCSID
+ CHOICE {legID [0] LegID,
+ csID [9] CallSegmentID{b2}} --DEFAULT legID:sendingSideID:leg1 --,
+ alertingPattern [1] AlertingPattern OPTIONAL,
+ genericName [2] GenericName{b2} OPTIONAL,
+ iNServiceCompatibilityResponse [3] INServiceCompatibilityResponse OPTIONAL,
+ forwardGVNS [4] ForwardGVNS{b2} OPTIONAL,
+ backwardGVNS [5] BackwardGVNS{b2} OPTIONAL,
+ extensions [6] Extensions{b1} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [7] ServiceInteractionIndicatorsTwo OPTIONAL,
+ sDSSinformation [8] SDSSinformation{b2} OPTIONAL,
+ connectionIdentifier [60] ConnectionIdentifier{b2} OPTIONAL,
+ ...,
+ iSDNAccessRelatedInformation
+ [19] ISDNAccessRelatedInformation{b2} OPTIONAL,
+ originalCalledPartyID [10] OriginalCalledPartyID{b2} OPTIONAL,
+ callingPartyNumber [11] CallingPartyNumber{b2} OPTIONAL,
+ callingPartysCategory [12] CallingPartysCategory OPTIONAL,
+ redirectingPartyID [13] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [14] RedirectionInformation OPTIONAL,
+ forwardCallIndicators [15] ForwardCallIndicators OPTIONAL,
+ genericNumbers [16] GenericNumbers{b2} OPTIONAL,
+ cug-Interlock [17] CUG-Interlock OPTIONAL,
+ cug-OutgoingAccess [18] NULL OPTIONAL,
+ ipRelationInformation [20] IPRelatedInformation{b2} OPTIONAL
+}
+
+-- OPTIONAL parameters are only provided if modifications desired to basic call processing values
+createCallSegmentAssociation OPERATION ::= {
+ ARGUMENT CreateCallSegmentAssociationArg {b1}
+ OPTIONAL TRUE
+ RESULT CreateCallSegmentAssociationResultArg {b1,
+ b2}
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ CODE opcode-createCallSegmentAssociation
+}
+
+-- Direction SCF -> SSF, Timer Tcsa
+-- This operation is used to create a new CSA. The new CSA will not contain any Call Segments after creation.
+-- The SSF is responsible for specifying a new CSA identifier for the created CSA which is unique within
+-- the SSF.
+CreateCallSegmentAssociationArg ::= SEQUENCE {
+ extensions [0] Extensions{b1} OPTIONAL,
+ ...
+}
+
+CreateCallSegmentAssociationResultArg ::= SEQUENCE {
+ newCallSegmentAssociation [0] CSAID{b2},
+ extensions [1] Extensions{b1} OPTIONAL,
+ ...
+}
+
+createOrRemoveTriggerData OPERATION ::= {
+ ARGUMENT CreateOrRemoveTriggerDataArg {b1,
+ b2,
+ b3}
+ RESULT CreateOrRemoveTriggerDataResultArg {b1,
+ b2}
+ ERRORS
+ {missingParameter | missingCustomerRecord | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ CODE opcode-createOrRemoveTriggerData
+}
+
+-- Direction: SCF -> SSF, Class 1, Timer: Tcrt
+-- This trigger management operation is used by the SCF outside the context of a call to create a new
+-- trigger detection point in the CCF/SSF by downloading trigger data
+-- (e.g. triggering criteria, ServiceKey, SCF address,....)
+-- or to remove an existing trigger.
+CreateOrRemoveTriggerDataArg ::= SEQUENCE {
+ createOrRemove [0] CreateOrRemoveIndicator DEFAULT create,
+ dPName [1] EventTypeBCSM OPTIONAL,
+ triggerDPType [2] TriggerDPType DEFAULT tdp-r,
+ serviceKey [3] ServiceKey OPTIONAL,
+ profile [4] ProfileIdentifier{b2} OPTIONAL,
+ triggerData [5] TriggerData OPTIONAL,
+ defaultFaultHandling [6] DefaultFaultHandling{b2, b3} OPTIONAL,
+ tDPIdentifier [7] TDPIdentifier{b2} OPTIONAL,
+ ...,
+-- ...,
+ extensions [30] Extensions{b1} OPTIONAL
+}
+
+CreateOrRemoveTriggerDataResultArg ::= SEQUENCE {
+ triggerStatus [0] TriggerStatus,
+ tDPIdentifier [1] TDPIdentifier{b2},
+ registratorIdentifier [2] RegistratorIdentifier OPTIONAL,
+ ...,
+-- ...,
+ extensions [30] Extensions{b1} OPTIONAL
+}
+
+disconnectForwardConnection OPERATION ::= {
+ RETURN RESULT FALSE
+ ERRORS {systemFailure | taskRefused | unexpectedComponentSequence}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-disconnectForwardConnection
+}
+
+-- Direction: SCF -> SSF, Timer: Tdfc
+-- This operation is used to disconnect a forward temporary connection or a connection to a resource.
+disconnectForwardConnectionWithArgument OPERATION ::= {
+ ARGUMENT DisconnectForwardConnectionWithArgumentArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-dFCWithArgument
+}
+
+-- Direction: SCF -> SSF, Timer: Tdfcwa
+-- This operation is used to disconnect a forward temporary connection or a connection to a resource.
+DisconnectForwardConnectionWithArgumentArg ::= SEQUENCE {
+ partyToDisconnect
+ CHOICE {legID [0] LegID,
+ callSegmentID [1] CallSegmentID{b2}},
+ extensions [2] Extensions{b1} OPTIONAL,
+ uSIServiceIndicator [3] USIServiceIndicator{b2} OPTIONAL,
+ uSIInformation [4] USIInformation{b2} OPTIONAL,
+ ...
+}
+
+disconnectLeg OPERATION ::= {
+ ARGUMENT DisconnectLegArg {b1,
+ b2}
+ RETURN RESULT TRUE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ CODE opcode-disconnectLeg
+}
+
+-- Direction: SCF -> SSF. Timer: T dl
+-- This operation is issued by the SCF to release a specific leg associated with the call and retain any
+-- other legs not specified in the DisconnectLeg. Any leg may be disconnected, including the controlling
+-- leg, without completely releasing all legs.
+DisconnectLegArg ::= SEQUENCE {
+ legToBeReleased [0] LegID,
+ releaseCause [1] Cause{b2} OPTIONAL,
+ extensions [2] Extensions{b1} OPTIONAL,
+ ...
+}
+
+entityReleased OPERATION ::= {
+ ARGUMENT EntityReleasedArg {b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-entityReleased
+}
+
+-- Direction SSF -> SCF, Timer: Ter
+-- This operation is used by SSF to inform the SCF of an error/exception
+EntityReleasedArg ::= CHOICE {
+ cSFailure
+ [0] SEQUENCE {callSegmentID [0] CallSegmentID{b2},
+ reason [1] Reason{b2} OPTIONAL,
+ cause [2] Cause{b2} OPTIONAL,
+ ...},
+ bCSMFailure
+ [1] SEQUENCE {legID [0] LegID,
+ reason [1] Reason{b2} OPTIONAL,
+ cause [2] Cause{b2} OPTIONAL,
+ ...}
+}
+
+establishTemporaryConnection OPERATION ::= {
+ ARGUMENT EstablishTemporaryConnectionArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {eTCFailed | missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-establishTemporaryConnection
+}
+
+-- Direction: SCF -> SSF, Timer: Tetc
+-- This operation is used to create a connection to a resource for a limited period of time
+-- (e.g. to play an announcement, to collect user information); it implies the use of the assist
+-- procedure.
+EstablishTemporaryConnectionArg ::= SEQUENCE {
+ assistingSSPIPRoutingAddress [0] AssistingSSPIPRoutingAddress{b2},
+ correlationID [1] CorrelationID{b2} OPTIONAL,
+ partyToConnect
+ CHOICE {legID [2] LegID,
+ callSegmentID [7] CallSegmentID{b2}} OPTIONAL,
+ scfID [3] ScfID{b2} OPTIONAL,
+ extensions [4] Extensions{b1} OPTIONAL,
+ carrier [5] Carrier{b2} OPTIONAL,
+ serviceInteractionIndicators
+ [30] ServiceInteractionIndicators{b2} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [6] ServiceInteractionIndicatorsTwo OPTIONAL,
+ ...
+}
+
+-- OPTIONAL parameters are only provided if modifications desired to basic call processing values
+eventNotificationCharging OPERATION ::= {
+ ARGUMENT EventNotificationChargingArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-eventNotificationCharging
+}
+
+-- Direction: SSF -> SCF, Timer: Tenc
+-- This operation is used by the SSF to report to the SCF the occurence of a specific charging event
+-- type as previously requested by the SCF in a RequestNotificationChargingEvent operation.
+EventNotificationChargingArg ::= SEQUENCE {
+ eventTypeCharging [0] EventTypeCharging{b2},
+ eventSpecificInformationCharging
+ [1] EventSpecificInformationCharging{b2} OPTIONAL,
+ legID [2] LegID OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ monitorMode [30] MonitorMode DEFAULT notifyAndContinue,
+ ...
+}
+
+-- OPTIONAL denotes network operator specific use.
+eventReportBCSM OPERATION ::= {
+ ARGUMENT EventReportBCSMArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-eventReportBCSM
+}
+
+-- Direction: SSF -> SCF, Timer: Terb
+-- This operation is used to notify the SCF of a call-related event (e.g. BCSM events such as busy or
+-- no answer) previously requested by the SCF in a RequestReportBCSMEvent operation.
+EventReportBCSMArg ::= SEQUENCE {
+ eventTypeBCSM [0] EventTypeBCSM,
+ bcsmEventCorrelationID [1] CorrelationID{b2} OPTIONAL,
+ eventSpecificInformationBCSM [2] EventSpecificInformationBCSM{b2} OPTIONAL,
+ legID [3] LegID OPTIONAL,
+ miscCallInfo [4] MiscCallInfo DEFAULT {messageType request},
+ extensions [5] Extensions{b1} OPTIONAL,
+ componentType [6] ComponentType OPTIONAL,
+ component [7] Component OPTIONAL,
+ componentCorrelationID [8] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+eventReportFacility OPERATION ::= {
+ ARGUMENT EventReportFacilityArg {b1}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-eventReportFacility
+}
+
+-- SSF->SCF, Timer: Terf
+-- This operation is issued by the SSF to report the SCF the event, that was previously requested by the
+-- SCF, the CCF/SSF receives a DSS1 message which contains a FACILITY IE. Criteria for the report, like
+-- reception of the ReturnResult which is specified with ComponentType, is optionally checked
+-- before issuing this operation.
+EventReportFacilityArg ::= SEQUENCE {
+ componentType [0] ComponentType OPTIONAL,
+ component [1] Component OPTIONAL,
+ legID [2] LegID OPTIONAL,
+ componentCorrelationID [3] ComponentCorrelationID OPTIONAL,
+ extensions [4] Extensions{b1} OPTIONAL,
+ ...
+}
+
+facilitySelectedAndAvailable OPERATION ::= {
+ ARGUMENT FacilitySelectedAndAvailableArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-facilitySelectedAndAvailable
+}
+
+-- Direction: SSF -> SCF. Timer: Tfs
+-- This operation is used for indication of a call termination attempt from the terminating half BCSM. (DP -
+-- Facility_Selected_And_Available).
+FacilitySelectedAndAvailableArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ calledPartyBusinessGroupID [1] CalledPartyBusinessGroupID OPTIONAL,
+ calledPartySubaddress [2] CalledPartySubaddress{b2} OPTIONAL,
+ callingPartyBusinessGroupID [3] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartyNumber [4] CallingPartyNumber{b2} OPTIONAL,
+ originalCalledPartyID [5] OriginalCalledPartyID{b2} OPTIONAL,
+ redirectingPartyID [6] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [7] RedirectionInformation OPTIONAL,
+ routeList [8] RouteList{b2} OPTIONAL,
+ travellingClassMark [9] TravellingClassMark{b2} OPTIONAL,
+ extensions [10] Extensions{b1} OPTIONAL,
+ componentType [11] ComponentType OPTIONAL,
+ component [12] Component OPTIONAL,
+ componentCorrelationID [13] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+furnishChargingInformation OPERATION ::= {
+ ARGUMENT FurnishChargingInformationArg {b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-furnishChargingInformation
+}
+
+-- Direction: SCF -> SSF, Timer: Tfci
+-- This operation is used to request the SSF to generate, register a call record or to include some information
+-- in the default call record. The registered call record is intended for off line charging of the call.
+FurnishChargingInformationArg ::=
+ FCIBillingChargingCharacteristics{b2}
+
+holdCallInNetwork OPERATION ::= {
+ ARGUMENT HoldCallInNetworkArg
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-holdCallInNetwork
+}
+
+-- Direction: SCF -> SSF, Timer: Thcn
+-- This operation is used to provide the capability of queueing a call during the setup phase (e.g. to provide
+-- a call completion to busy, the call would be queued until the destination becomes free).
+HoldCallInNetworkArg ::= CHOICE {
+ holdcause [0] HoldCause,
+ empty [1] NULL
+}
+
+-- holdcause is optional and denotes network operator specific use.
+initialDP OPERATION ::= {
+ ARGUMENT InitialDPArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-initialDP
+}
+
+-- Direction: SSF -> SCF, Timer: Tidp
+-- This operation is used after a TDP to indicate request for service.
+InitialDPArg ::= SEQUENCE {
+ serviceKey [0] ServiceKey OPTIONAL,
+ dialledDigits [1] CalledPartyNumber{b2} OPTIONAL,
+ calledPartyNumber [2] CalledPartyNumber{b2} OPTIONAL,
+ callingPartyNumber [3] CallingPartyNumber{b2} OPTIONAL,
+ callingPartyBusinessGroupID [4] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartysCategory [5] CallingPartysCategory OPTIONAL,
+ callingPartySubaddress [6] CallingPartySubaddress{b2} OPTIONAL,
+ cGEncountered [7] CGEncountered OPTIONAL,
+ iPSSPCapabilities [8] IPSSPCapabilities{b2} OPTIONAL,
+ iPAvailable [9] IPAvailable{b2} OPTIONAL,
+ locationNumber [10] LocationNumber{b2} OPTIONAL,
+ miscCallInfo [11] MiscCallInfo OPTIONAL,
+ originalCalledPartyID [12] OriginalCalledPartyID{b2} OPTIONAL,
+ serviceProfileIdentifier [13] ServiceProfileIdentifier OPTIONAL,
+ terminalType [14] TerminalType OPTIONAL,
+ extensions [15] Extensions{b1} OPTIONAL,
+ triggerType [16] TriggerType OPTIONAL,
+ highLayerCompatibility [23] HighLayerCompatibility{b2} OPTIONAL,
+ serviceInteractionIndicators
+ [24] ServiceInteractionIndicators{b2} OPTIONAL,
+ additionalCallingPartyNumber
+ [25] AdditionalCallingPartyNumber{b2} OPTIONAL,
+ forwardCallIndicators [26] ForwardCallIndicators OPTIONAL,
+ bearerCapability [27] BearerCapability{b2} OPTIONAL,
+ eventTypeBCSM [28] EventTypeBCSM OPTIONAL,
+ redirectingPartyID [29] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [30] RedirectionInformation OPTIONAL,
+ cause [17] Cause{b2} OPTIONAL,
+ componentType [18] ComponentType OPTIONAL,
+ component [19] Component OPTIONAL,
+ componentCorrelationID [20] ComponentCorrelationID OPTIONAL,
+ iSDNAccessRelatedInformation
+ [21] ISDNAccessRelatedInformation{b2} OPTIONAL,
+ iNServiceCompatibilityIndication
+ [22] INServiceCompatibilityIndication{b2} OPTIONAL,
+ genericNumbers [31] GenericNumbers{b2} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [32] ServiceInteractionIndicatorsTwo OPTIONAL,
+ forwardGVNS [33] ForwardGVNS{b2} OPTIONAL,
+ createdCallSegmentAssociation [34] CSAID{b2} OPTIONAL,
+ uSIServiceIndicator [35] USIServiceIndicator{b2} OPTIONAL,
+ uSIInformation [36] USIInformation{b2} OPTIONAL,
+ carrier [37] Carrier{b2} OPTIONAL,
+ cCSS [38] CCSS OPTIONAL,
+ vPNIndicator [39] VPNIndicator OPTIONAL,
+ cNInfo [40] CNInfo{b2} OPTIONAL,
+ callReference [41] CallReference{b2} OPTIONAL,
+ routeingNumber [42] RouteingNumber{b2} OPTIONAL,
+ callingGeodeticLocation [43] CallingGeodeticLocation{b2} OPTIONAL,
+ calledPartySubaddress [60] CalledPartySubaddress{b2} OPTIONAL,
+ connectionIdentifier [61] ConnectionIdentifier{b2} OPTIONAL,
+ genericIdentifier [62] GenericIdentifier{b2} OPTIONAL,
+ qOSParameter [63] QoSParameter{b2} OPTIONAL,
+ bISDNParameters [64] BISDNParameters{b2} OPTIONAL,
+ ...,
+ globalCallReference [44] GlobalCallReference{b2} OPTIONAL,
+ cug-Index [45] CUG-Index OPTIONAL,
+ cug-Interlock [46] CUG-Interlock OPTIONAL,
+ cug-OutgoingAccess [47] NULL OPTIONAL,
+ ipRelatedInformation [48] IPRelatedInformation{b2} OPTIONAL
+}
+
+-- OPTIONAL for iPSSPCapabilities, iPAvailable, cGEncountered, and miscCallInfo denotes network
+-- operator specific use.
+-- OPTIONAL for terminalType indicates that this parameter applies only at originating or terminating
+-- local exchanges if the SSF has this information.
+initiateCallAttempt OPERATION ::= {
+ ARGUMENT InitiateCallAttemptArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-initiateCallAttempt
+}
+
+-- Direction: SCF -> SSF, Timer: Tica
+-- This operation is used to request the SSF to create a new call to one call party using address
+-- information provided by the SCF.
+InitiateCallAttemptArg ::= SEQUENCE {
+ destinationRoutingAddress [0] DestinationRoutingAddress{b2},
+ alertingPattern [1] AlertingPattern OPTIONAL,
+ iSDNAccessRelatedInformation
+ [2] ISDNAccessRelatedInformation{b2} OPTIONAL,
+ travellingClassMark [3] TravellingClassMark{b2} OPTIONAL,
+ extensions [4] Extensions{b1} OPTIONAL,
+ serviceInteractionIndicators
+ [29] ServiceInteractionIndicators{b2} OPTIONAL,
+ callingPartyNumber [30] CallingPartyNumber{b2} OPTIONAL,
+ legToBeCreated [5] LegID --DEFAULT sendingSideID:leg1--,
+ newCallSegment
+ [6] CallSegmentID{b2} DEFAULT initialCallSegment,
+ iNServiceCompatibilityResponse [7] INServiceCompatibilityResponse OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [8] ServiceInteractionIndicatorsTwo OPTIONAL,
+ carrier [9] Carrier{b2} OPTIONAL,
+ correlationID [10] CorrelationID{b2} OPTIONAL,
+ scfID [11] ScfID{b2} OPTIONAL,
+ callReference [12] CallReference{b2} OPTIONAL,
+ calledDirectoryNumber [13] CalledDirectoryNumber{b2} OPTIONAL,
+ bearerCapability [60] BearerCapability{b2} OPTIONAL,
+ calledPartySubaddress [61] CalledPartySubaddress{b2} OPTIONAL,
+ connectionIdentifier [62] ConnectionIdentifier{b2} OPTIONAL,
+ genericIdentifier [63] GenericIdentifier{b2} OPTIONAL,
+ qOSParameter [64] QoSParameter{b2} OPTIONAL,
+ bISDNParameters [65] BISDNParameters{b2} OPTIONAL,
+ ...,
+ originalCalledPartyID [14] OriginalCalledPartyID{b2} OPTIONAL,
+ callingPartysCategory [15] CallingPartysCategory OPTIONAL,
+ redirectingPartyID [16] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [17] RedirectionInformation OPTIONAL,
+ displayInformation [18] DisplayInformation{b2} OPTIONAL,
+ forwardCallIndicators [19] ForwardCallIndicators OPTIONAL,
+ genericNumbers [20] GenericNumbers{b2} OPTIONAL,
+ forwardGVNS [21] ForwardGVNS{b2} OPTIONAL,
+ globalCallReference [23] GlobalCallReference{b2} OPTIONAL,
+ -- syntax to be confirmed
+ cug-Interlock [24] CUG-Interlock OPTIONAL,
+ cug-OutgoingAccess [25] NULL OPTIONAL,
+ incomingSignallingBufferCopy [26] BOOLEAN DEFAULT FALSE,
+ ipRelatedInformation [27] IPRelatedInformation{b2} OPTIONAL
+}
+
+-- OPTIONAL parameters are only provided if modifications desired to basic call processing values
+manageTriggerData OPERATION ::= {
+ ARGUMENT ManageTriggerDataArg {b1,
+ b2}
+ RESULT ManageTriggerDataResultArg {b1,
+ b2}
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ CODE opcode-manageTriggerData
+}
+
+-- Direction: SCF -> SSF, Class 1, Timer: Tmtd
+-- This trigger management operation is used outside the context of a call to activate, deactivate or retrieve
+-- the status of one or several trigger detection point linked to a subscriber profile known at the switch,
+-- e.g. related to an access line ( i.e. an individual trigger).
+ManageTriggerDataArg ::= SEQUENCE {
+ actionIndicator [0] ActionIndicator,
+ triggerDataIdentifier
+ CHOICE {profileAndDP [1] TriggerDataIdentifier{b1, b2},
+ -- one trigger
+ profile [5] ProfileIdentifier{b2}},
+ registratorIdentifier [2] RegistratorIdentifier OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ tDPIdentifier [4] TDPIdentifier{b2} OPTIONAL,
+ ...
+}
+
+ManageTriggerDataResultArg ::= CHOICE {
+ oneTriggerResult
+ SEQUENCE {actionPerformed [0] ActionPerformed,
+ extensions [1] Extensions{b1} OPTIONAL,
+ ...},
+ severalTriggerResult
+ [1] SEQUENCE {results [0] TriggerResults{b2},
+ extensions [1] Extensions{b1} OPTIONAL,
+ ...}
+}
+
+mergeCallSegments OPERATION ::= {
+ ARGUMENT MergeCallSegmentsArg {b1,
+ b2}
+ RETURN RESULT TRUE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ CODE opcode-mergeCallSegments
+}
+
+-- Direction: SCF -> SSF. Timer: T mc
+-- This operation is issued by the SCF to merge two associated CSs , into one CS .
+MergeCallSegmentsArg ::= SEQUENCE {
+ sourceCallSegment [0] CallSegmentID{b2},
+ targetCallSegment [1] CallSegmentID{b2} DEFAULT initialCallSegment,
+ extensions [2] Extensions{b1} OPTIONAL,
+ ...,
+ mergeSignallingPaths [3] NULL OPTIONAL
+}
+
+monitorRouteReport OPERATION ::= {
+ ARGUMENT MonitorRouteReportArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-monitorRouteReport
+}
+
+-- Direction SSF-> SCF: Timer T mrp
+-- This operation is used by the SSF to report the result of a route monitoring procedure.
+MonitorRouteReportArg ::= SEQUENCE {
+ routeCounters [0] RouteCountersValue{b2},
+ correlationID [2] CorrelationID{b2},
+ ...,
+-- ...,
+ extensions [3] Extensions{b1} OPTIONAL
+}
+
+monitorRouteRequest OPERATION ::= {
+ ARGUMENT MonitorRouteRequestArg {b1,
+ b2}
+ RETURN RESULT TRUE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedParameter}
+ CODE opcode-monitorRouteRequest
+}
+
+-- Direction SCF -> SSF. Timer Tmrr
+-- This operationis issued by the SCF to request the SSF to monitor specified routes.
+MonitorRouteRequestArg ::= SEQUENCE {
+ routeList [0] RouteList{b2},
+ correlationID [1] CorrelationID{b2},
+ monitoringCriteria [2] MonitoringCriteria,
+ monitoringTimeout [3] MonitoringTimeOut,
+ startTime [4] DateAndTime OPTIONAL,
+ ...,
+-- ...,
+ extensions [5] Extensions{b1} OPTIONAL
+}
+
+moveCallSegments OPERATION ::= {
+ ARGUMENT MoveCallSegmentsArg {b1,
+ b2}
+ RETURN RESULT TRUE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ CODE opcode-moveCallSegments
+}
+
+-- Direction: SCF -> SSF, Timer Tmcs
+-- This operation moves a CS from the source CSA to the the target CSA
+MoveCallSegmentsArg ::= SEQUENCE {
+ targetCallSegmentAssociation [0] CSAID{b2},
+ callSegments
+ [1] SEQUENCE SIZE (1..--b2.&--numOfCSs) OF
+ SEQUENCE {sourceCallSegment
+ [0] CallSegmentID{b2} DEFAULT initialCallSegment,
+ newCallSegment [1] CallSegmentID{b2},
+ ...},
+ legs
+ [2] SEQUENCE SIZE (1..--b2.&--numOfLegs) OF
+ SEQUENCE {sourceLeg [0] LegID,
+ newLeg [1] LegID,
+ ...},
+ extensions [3] Extensions{b1} OPTIONAL,
+ ...
+}
+
+moveLeg OPERATION ::= {
+ ARGUMENT MoveLegArg {b1,
+ b2}
+ RETURN RESULT TRUE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ CODE opcode-moveLeg
+}
+
+-- Direction : SCF ->SSF, Timer: T ml
+-- This operation is issued by the SCF to move a leg from one CS to another with which it is associated.
+MoveLegArg ::= SEQUENCE {
+ legIDToMove [0] LegID,
+ targetCallSegment [1] CallSegmentID{b2} DEFAULT 1,
+ extensions [2] Extensions{b1} OPTIONAL,
+ ...,
+ detachSignallingPath [3] NULL OPTIONAL, -- action on source
+ exportSignallingPath [4] NULL OPTIONAL -- action on target
+}
+
+oAbandon OPERATION ::= {
+ ARGUMENT OAbandonArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-oAbandon
+}
+
+-- Direction: SSF -> SCF. Timer: T ob
+-- This operation is issued by the SSF after detecting a valid trigger condition at the O_Abandon DP or to
+-- report an oAbandon event requested by the RequestReportBCSMEvent.
+OAbandonArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ callSegmentID [1] CallSegmentID{b2},
+ releaseCause [2] Cause{b2} OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- Use of T/EDP-R is outside
+-- the scope of this capability set.
+oAnswer OPERATION ::= {
+ ARGUMENT OAnswerArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-oAnswer
+}
+
+-- Direction: SSF -> SCF, Timer: Toa
+-- This operation is used for indication from the terminating half BCSM that the call is accepted and answered
+-- by terminating party (e.g. terminating party goes offhook, Q.931 Connect message received, IS-UP Answer
+-- message received) (DP - O_Answer).
+OAnswerArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ callingPartyBusinessGroupID [1] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [2] CallingPartySubaddress{b2} OPTIONAL,
+ callingFacilityGroup [3] FacilityGroup OPTIONAL,
+ callingFacilityGroupMember [4] FacilityGroupMember OPTIONAL,
+ originalCalledPartyID [5] OriginalCalledPartyID{b2} OPTIONAL,
+ redirectingPartyID [6] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [7] RedirectionInformation OPTIONAL,
+ routeList [8] RouteList{b2} OPTIONAL,
+ travellingClassMark [9] TravellingClassMark{b2} OPTIONAL,
+ extensions [10] Extensions{b1} OPTIONAL,
+ ...
+}
+
+oCalledPartyBusy OPERATION ::= {
+ ARGUMENT OCalledPartyBusyArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-oCalledPartyBusy
+}
+
+-- Direction: SSF -> SCF, Timer: Tob
+-- This operation is used for Indication from the terminating half BCSM that the terminating party is busy
+-- (DP - O_Called_Party_Busy). .
+OCalledPartyBusyArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ busyCause [1] Cause{b2} OPTIONAL,
+ callingPartyBusinessGroupID [2] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [3] CallingPartySubaddress{b2} OPTIONAL,
+ callingFacilityGroup [4] FacilityGroup OPTIONAL,
+ callingFacilityGroupMember [5] FacilityGroupMember OPTIONAL,
+ originalCalledPartyID [6] OriginalCalledPartyID{b2} OPTIONAL,
+ prefix [7] Digits{b2} OPTIONAL,
+ redirectingPartyID [8] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [9] RedirectionInformation OPTIONAL,
+ routeList [10] RouteList{b2} OPTIONAL,
+ travellingClassMark [11] TravellingClassMark{b2} OPTIONAL,
+ extensions [12] Extensions{b1} OPTIONAL,
+ carrier [13] Carrier{b2} OPTIONAL,
+ ...
+}
+
+oDisconnect OPERATION ::= {
+ ARGUMENT ODisconnectArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-oDisconnect
+}
+
+-- Direction: SSF -> SCF, Timer: Tod
+-- This operation is used for a disconnect indication (e.g. onhook, Q.931 Disconnect message, SS7 Release message)
+-- is received from the originating party, or received from the terminating party via the terminating half BCSM.
+-- (DP - O_Disconnect). .
+ODisconnectArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ callingPartyBusinessGroupID [1] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [2] CallingPartySubaddress{b2} OPTIONAL,
+ callingFacilityGroup [3] FacilityGroup OPTIONAL,
+ callingFacilityGroupMember [4] FacilityGroupMember OPTIONAL,
+ releaseCause [5] Cause{b2} OPTIONAL,
+ routeList [6] RouteList{b2} OPTIONAL,
+ extensions [7] Extensions{b1} OPTIONAL,
+ carrier [8] Carrier{b2} OPTIONAL,
+ connectTime [9] Integer4 OPTIONAL,
+ componentType [10] ComponentType OPTIONAL,
+ component [11] Component OPTIONAL,
+ componentCorrelationID [12] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+oMidCall OPERATION ::= {
+ ARGUMENT MidCallArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-oMidCall
+}
+
+-- Direction: SSF -> SCF, Timer: Tomc
+-- This operation is used to indicate a feature request is received from the originating party
+-- (e.g. hook flash, ISDN feature activation, Q.931 HOLD or RETrieve message). (DP - O_Mid_Call).
+MidCallArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ calledPartyBusinessGroupID [1] CalledPartyBusinessGroupID OPTIONAL,
+ calledPartySubaddress [2] CalledPartySubaddress{b2} OPTIONAL,
+ callingPartyBusinessGroupID [3] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [4] CallingPartySubaddress{b2} OPTIONAL,
+ featureRequestIndicator [5] FeatureRequestIndicator OPTIONAL,
+ extensions [6] Extensions{b1} OPTIONAL,
+ carrier [7] Carrier{b2} OPTIONAL,
+ componentType [8] ComponentType OPTIONAL,
+ component [9] Component OPTIONAL,
+ componentCorrelationID [10] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+oNoAnswer OPERATION ::= {
+ ARGUMENT ONoAnswerArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-oNoAnswer
+}
+
+-- Direction: SSF -> SCF, Timer: Tona
+-- This operation is used for indication from the terminating half BCSM that the terminating party does not
+-- answer within a specified time period (DP - O_No_Answer).
+ONoAnswerArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ callingPartyBusinessGroupID [1] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [2] CallingPartySubaddress{b2} OPTIONAL,
+ callingFacilityGroup [3] FacilityGroup OPTIONAL,
+ callingFacilityGroupMember [4] FacilityGroupMember OPTIONAL,
+ originalCalledPartyID [5] OriginalCalledPartyID{b2} OPTIONAL,
+ prefix [6] Digits{b2} OPTIONAL,
+ redirectingPartyID [7] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [8] RedirectionInformation OPTIONAL,
+ routeList [9] RouteList{b2} OPTIONAL,
+ travellingClassMark [10] TravellingClassMark{b2} OPTIONAL,
+ extensions [11] Extensions{b1} OPTIONAL,
+ carrier [12] Carrier{b2} OPTIONAL,
+ ...
+}
+
+originationAttempt OPERATION ::= {
+ ARGUMENT OriginationAttemptArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-originationAttempt
+}
+
+-- Direction: SSF -> SCF. Timer: Tora
+-- This operation is used for indication of a call origination attempt from the originating half BCSM.
+-- (DP - Origination_Attempt).
+OriginationAttemptArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ callingPartyBusinessGroupID [1] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [2] CallingPartySubaddress{b2} OPTIONAL,
+ callingFacilityGroup [3] FacilityGroup OPTIONAL,
+ callingFacilityGroupMember [4] FacilityGroupMember OPTIONAL,
+ carrier [5] Carrier{b2} OPTIONAL,
+ travellingClassMark [6] TravellingClassMark{b2} OPTIONAL,
+ extensions [7] Extensions{b1} OPTIONAL,
+ componentType [8] ComponentType OPTIONAL,
+ component [9] Component OPTIONAL,
+ componenttCorrelationID [10] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+originationAttemptAuthorized OPERATION ::= {
+ ARGUMENT OriginationAttemptAuthorizedArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-originationAttemptAuthorized
+}
+
+-- Direction: SSF -> SCF, Timer: Toaa
+-- This operation is used to Indicate the desire to place outgoing call (e.g. offhook, Q.931 Setup message,
+-- ISUP IAM message) and authority/ability to place outgoing call verified (DP -
+-- Origination_Attempt_Authorized).
+OriginationAttemptAuthorizedArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ dialledDigits [1] CalledPartyNumber{b2} OPTIONAL,
+ callingPartyBusinessGroupID [2] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [3] CallingPartySubaddress{b2} OPTIONAL,
+ callingFacilityGroup [4] FacilityGroup OPTIONAL,
+ callingFacilityGroupMember [5] FacilityGroupMember OPTIONAL,
+ travellingClassMark [6] TravellingClassMark{b2} OPTIONAL,
+ extensions [7] Extensions{b1} OPTIONAL,
+ carrier [8] Carrier{b2} OPTIONAL,
+ componentType [9] ComponentType OPTIONAL,
+ component [10] Component OPTIONAL,
+ componentCorrelationID [11] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+oSuspended OPERATION ::= {
+ ARGUMENT OSuspendedArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-oSuspended
+}
+
+-- Direction: SSF -> SCF. Timer: T os
+-- This operation is issued by the SSF after detecting a valid trigger condition at the O_Suspend DP or to
+-- report an oSuspend event requested by the RequestReportBCSMEvent.
+OSuspendedArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ legID [1] LegID OPTIONAL,
+ extensions [2] Extensions{b1} OPTIONAL,
+ ...
+}
+
+reconnect OPERATION ::= {
+ ARGUMENT ReconnectArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-reconnect
+}
+
+-- Direction: SCF -> SSF. Timer: T re
+-- This operation is issued by the SCF to reestablish communication between the controlling leg and the
+-- (held) passive leg(s). .
+ReconnectArg ::= SEQUENCE {
+ notificationDuration [0] ApplicationTimer OPTIONAL,
+ alertingPattern [1] AlertingPattern OPTIONAL,
+ displayInformation [2] DisplayInformation{b2} OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ callSegmentID [4] CallSegmentID{b2} OPTIONAL,
+ ...
+}
+
+releaseCall OPERATION ::= {
+ ARGUMENT ReleaseCallArg {b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-releaseCall
+}
+
+-- Direction: SCF -> SSF, Timer: Trc
+-- This operation is used by the SCF to tear down an existing call segment at any phase of the call for all parties
+-- involved in the call segment or to tear down all existing call segments within a Call Segment Association.
+ReleaseCallArg ::= CHOICE {
+ initialCallSegment Cause{b2},
+ callSegmentToRelease
+ [1] SEQUENCE {callSegment [0] INTEGER(1..--b2.&--numOfCSs),
+ releaseCause [1] Cause{b2} OPTIONAL,
+ forcedRelease [2] BOOLEAN DEFAULT FALSE,
+ ...},
+ allCallSegments
+ [2] SEQUENCE {releaseCause [0] Cause{b2} OPTIONAL,
+ timeToRelease [1] TimerValue OPTIONAL,
+ forcedRelease [2] BOOLEAN DEFAULT FALSE,
+ ...},
+ ...
+}
+
+-- A default cause value of decimal 31 (normal unspecified) should be coded appropriately.
+-- If timeToRelease parameter is omitted, the default shall be no timed disconnect requested
+-- If forcedRelease parameter is omitted (default value "FALSE") the default shall be no forced release requested.
+reportUTSI OPERATION ::= {
+ ARGUMENT ReportUTSIArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-reportUTSI
+}
+
+-- Direction: SSF -> SCF. Timer: Tru
+-- This operation is issued by the SSF in the context of the USI feature. It is used to report the receipt
+-- of a User to Service Information (USI) to the SCF.
+ReportUTSIArg ::= SEQUENCE {
+ uSIServiceIndicator [0] USIServiceIndicator{b2},
+ legID [1] LegID --DEFAULT receivingSideID:leg1--,
+ uSIInformation [2] USIInformation{b2},
+ extensions [3] Extensions{b1} OPTIONAL,
+ ...
+}
+
+requestCurrentStatusReport OPERATION ::= {
+ ARGUMENT RequestCurrentStatusReportArg {b2}
+ RESULT RequestCurrentStatusReportResultArg {b1,
+ b2}
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownResource}
+ CODE opcode-requestCurrentStatusReport
+}
+
+-- Direction: SCF -> SSF, Timer: Trcs
+-- This operation is used to request the SSF to report immediately the busy/idle status of a physical
+-- termination resource.
+RequestCurrentStatusReportArg ::=
+ ResourceID{b2}
+
+RequestCurrentStatusReportResultArg ::= SEQUENCE {
+ resourceStatus [0] ResourceStatus,
+ resourceID [1] ResourceID{b2} OPTIONAL,
+ extensions [2] Extensions{b1} OPTIONAL,
+ ...
+}
+
+requestEveryStatusChangeReport OPERATION ::= {
+ ARGUMENT RequestEveryStatusChangeReportArg {b1,
+ b2}
+ RETURN RESULT TRUE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownResource}
+ CODE opcode-requestEveryStatusChangeReport
+}
+
+-- Direction: SCF -> SSF, Timer: Tres
+-- This operation is used to request the SSF to report every change of busy/idle status of a physical
+-- termination resource.
+RequestEveryStatusChangeReportArg ::= SEQUENCE {
+ resourceID [0] ResourceID{b2},
+ correlationID [1] CorrelationID{b2} OPTIONAL,
+ monitorDuration [2] Duration OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- For correlationID OPTIONAL denotes network operator optional.
+-- monitorDuration is required if outside the context of a call. It is not expected if we are in the context
+-- of a call, because in that case the end of the call implicitly means the end of the monitoring.
+requestFirstStatusMatchReport OPERATION ::= {
+ ARGUMENT RequestFirstStatusMatchReportArg {b1,
+ b2}
+ RETURN RESULT TRUE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownResource}
+ CODE opcode-requestFirstStatusMatchReport
+}
+
+-- Direction: SCF -> SSF, Timer: Trfs
+-- This operation is used to request the SSF to report the first change busy/idle to the specified status of
+-- a physical termination resource.
+RequestFirstStatusMatchReportArg ::= SEQUENCE {
+ resourceID [0] ResourceID{b2} OPTIONAL,
+ resourceStatus [1] ResourceStatus OPTIONAL,
+ correlationID [2] CorrelationID{b2} OPTIONAL,
+ monitorDuration [3] Duration OPTIONAL,
+ extensions [4] Extensions{b1} OPTIONAL,
+ bearerCapability [5] BearerCapability{b2} OPTIONAL,
+ ...
+}
+
+-- For correlationID OPTIONAL denotes network operator optional.
+-- monitorDuration is required if outside the context of a call. It is not expected if we are in the context
+-- of a call, because in that case the end of the call implicitly means the end of the monitoring.
+requestNotificationChargingEvent OPERATION ::= {
+ ARGUMENT RequestNotificationChargingEventArg {b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-requestNotificationChargingEvent
+}
+
+-- Direction: SCF -> SSF, Timer: Trnc
+-- This operation is used by the SCF to instruct the SSF on how to manage the charging events
+-- - which are received from other FE's and not under control of the service logic instance.
+RequestNotificationChargingEventArg ::=
+ SEQUENCE SIZE (1..--b2.&--numOfChargingEvents) OF ChargingEvent{b2}
+
+requestReportBCSMEvent OPERATION ::= {
+ ARGUMENT RequestReportBCSMEventArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-requestReportBCSMEvent
+}
+
+-- Direction: SCF -> SSF, Timer: Trrb
+-- This operation is used to request the SSF to monitor for a call-related event (e.g. BCSM events such as
+-- busy or no answer), then send a notification back to the SCF when the event is detected.
+-- It is proposed that Event Detection Point (EDP) processing is always initiated by RequestReportBCSMEvent
+-- and the EDP may be acknowledged with either an EventReportBCSM or by a DP-specific operation.
+-- NOTE - the application context should identify whether BCSM Event Handling Package
+-- is being used, or whether DP Specific Event Handling Package is being used.
+-- For a particular IN, only one of the two alternatives identified by the respective Packages should be
+-- selected (i.e., only one approach should be selected for a given application context).
+-- Every EDP must be explicitly armed by the SCF via a RequestReportBCSMEvent operation.
+-- No implicit arming of EDPs at the SSF after reception of any operation (different from
+-- RequestReportBCSMEvent) from the SCF is allowed.
+RequestReportBCSMEventArg ::= SEQUENCE {
+ bcsmEvents
+ [0] SEQUENCE SIZE (1..--b2.&--numOfBCSMEvents) OF BCSMEvent{b2},
+ bcsmEventCorrelationID [1] CorrelationID{b2} OPTIONAL,
+ extensions [2] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- Indicates the BCSM related events for notification.
+-- For correlationID OPTIONAL denotes network operator optional.
+requestReportFacilityEvent OPERATION ::= {
+ ARGUMENT RequestReportFacilityEventArg {b1}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-requestReportFacilityEvent
+}
+
+-- SCF->SSF, Timer: Trrfe
+-- This operation is issued by the SCF to request the SSF to report the SCF the event that the CCF/SSF
+-- receives a DSS1 message which contains a FACILITY IE during a BCSM being suspended at a DP.
+RequestReportFacilityEventArg ::= SEQUENCE {
+ componentTypes
+ [0] SEQUENCE SIZE (1..3) OF ComponentType DEFAULT {any},
+ legID [1] LegID OPTIONAL,
+ componentCorrelationID [2] ComponentCorrelationID OPTIONAL,
+ monitorDuration [3] Duration,
+ extensions [4] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- componentTypes specifies the component types which should be reported to the SCF.
+-- monitorDuration specifies the monitor duration.
+requestReportUTSI OPERATION ::= {
+ ARGUMENT RequestReportUTSIArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-requestReportUTSI
+}
+
+-- Direction: SCF -> SSF. Timer: Trru
+-- This operation is issued by the SCF in the context of the USI feature to request the SSF to monitor for
+-- a User to Service Information (UTSI) information element, which are received from a user.
+RequestReportUTSIArg ::= SEQUENCE {
+ requestedUTSIList [0] RequestedUTSIList{b2},
+ extensions [1] Extensions{b1} OPTIONAL,
+ legID [2] LegID --DEFAULT sendingSideID:leg1--,
+ ...
+}
+
+resetTimer OPERATION ::= {
+ ARGUMENT ResetTimerArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-resetTimer
+}
+
+-- Direction: SCF -> SSF, Timer: Trt
+-- This operation is used to request the SSF to refresh an application timer in the SSF.
+ResetTimerArg ::= SEQUENCE {
+ timerID [0] TimerID DEFAULT tssf,
+ timervalue [1] TimerValue,
+ extensions [2] Extensions{b1} OPTIONAL,
+ callSegmentID [3] CallSegmentID{b2} OPTIONAL,
+ ...
+}
+
+routeSelectFailure OPERATION ::= {
+ ARGUMENT RouteSelectFailureArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ systemFailure | taskRefused | unexpectedComponentSequence |
+ unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-routeSelectFailure
+}
+
+-- Direction: SSF -> SCF, Timer: Trsf
+-- This operation is used to indicate that the SSP is unable to select a route (e.g. unable to determine a
+-- correct route, no more routes on route list) or indication from the terminating half BCSM that a call
+-- cannot be presented to the terminating party (e.g. network ongestion) (DP - Route_Select_Failure).
+RouteSelectFailureArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ dialledDigits [1] CalledPartyNumber{b2} OPTIONAL,
+ callingPartyBusinessGroupID [2] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [3] CallingPartySubaddress{b2} OPTIONAL,
+ callingFacilityGroup [4] FacilityGroup OPTIONAL,
+ callingFacilityGroupMember [5] FacilityGroupMember OPTIONAL,
+ failureCause [6] Cause{b2} OPTIONAL,
+ originalCalledPartyID [7] OriginalCalledPartyID{b2} OPTIONAL,
+ prefix [8] Digits{b2} OPTIONAL,
+ redirectingPartyID [9] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [10] RedirectionInformation OPTIONAL,
+ routeList [11] RouteList{b2} OPTIONAL,
+ travellingClassMark [12] TravellingClassMark{b2} OPTIONAL,
+ extensions [13] Extensions{b1} OPTIONAL,
+ carrier [14] Carrier{b2} OPTIONAL,
+ ...
+}
+
+selectFacility OPERATION ::= {
+ ARGUMENT SelectFacilityArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-selectFacility
+}
+
+-- Direction: SCF -> SSF, Timer: Tsf
+-- This operation is used to request the SSF to perform the terminating basic call processing
+-- actions to select the terminating line if it is idle, or selects an idle line from a multi-line hunt
+-- group, or selects an idle trunk from a trunk group, as appropriate. If no idle line or trunk is
+-- available, the SSF determines that the terminating facility is busy.
+SelectFacilityArg ::= SEQUENCE {
+ alertingPattern [0] AlertingPattern OPTIONAL,
+ destinationNumberRoutingAddress [1] CalledPartyNumber{b2} OPTIONAL,
+ iSDNAccessRelatedInformation
+ [2] ISDNAccessRelatedInformation{b2} OPTIONAL,
+ calledFacilityGroup [3] FacilityGroup OPTIONAL,
+ calledFacilityGroupMember [4] FacilityGroupMember OPTIONAL,
+ originalCalledPartyID [5] OriginalCalledPartyID{b2} OPTIONAL,
+ extensions [6] Extensions{b1} OPTIONAL,
+ displayInformation [7] DisplayInformation{b2} OPTIONAL,
+ serviceInteractionIndicators
+ [8] ServiceInteractionIndicators{b2} OPTIONAL,
+ iNServiceCompatibilityResponse [9] INServiceCompatibilityResponse OPTIONAL,
+ forwardGVNS [10] ForwardGVNS{b2} OPTIONAL,
+ backwardGVNS [11] BackwardGVNS{b2} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [12] ServiceInteractionIndicatorsTwo OPTIONAL,
+ correlationID [13] CorrelationID{b2} OPTIONAL,
+ scfID [14] ScfID{b2} OPTIONAL,
+ callSegmentID [15] CallSegmentID{b2} OPTIONAL,
+ legToBeCreated [16] LegID OPTIONAL,
+ ...,
+ ipRelatedInformation [17] IPRelatedInformation{b2} OPTIONAL
+}
+
+-- OPTIONAL parameters are only provided if modifications desired to basic call processing values.
+selectRoute OPERATION ::= {
+ ARGUMENT SelectRouteArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-selectRoute
+}
+
+-- Direction: SCF -> SSF, Timer: Tsr
+-- This operation is used to request the SSF to perform the originating basic call processing actions to
+-- determine routing information and select a route for a call, based either on call information available
+-- to the SSF, or on call information provided by the SCF (e.g. for alternate routing), to include the
+-- called party address, type of call, carrier, route index, and one or more alternate route indices.
+-- Based on the routing information, the SSF attempts to select a primary route for the call, and if the
+-- route is busy, attempts to select an alternate route. The SSF may fail to select a route for the call
+-- if all routes are busy.
+SelectRouteArg ::= SEQUENCE {
+ destinationRoutingAddress [0] DestinationRoutingAddress{b2},
+ alertingPattern [1] AlertingPattern OPTIONAL,
+ correlationID [2] CorrelationID{b2} OPTIONAL,
+ iSDNAccessRelatedInformation
+ [3] ISDNAccessRelatedInformation{b2} OPTIONAL,
+ originalCalledPartyID [4] OriginalCalledPartyID{b2} OPTIONAL,
+ routeList [5] RouteList{b2} OPTIONAL,
+ scfID [6] ScfID{b2} OPTIONAL,
+ travellingClassMark [7] TravellingClassMark{b2} OPTIONAL,
+ extensions [8] Extensions{b1} OPTIONAL,
+ carrier [9] Carrier{b2} OPTIONAL,
+ serviceInteractionIndicators
+ [10] ServiceInteractionIndicators{b2} OPTIONAL,
+ iNServiceCompatibilityResponse
+ [11] INServiceCompatibilityResponse OPTIONAL,
+ forwardGVNS [12] ForwardGVNS{b2} OPTIONAL,
+ backwardGVNS [13] BackwardGVNS{b2} OPTIONAL,
+ serviceInteractionIndicatorsTwo
+ [14] ServiceInteractionIndicatorsTwo OPTIONAL,
+ callSegmentID [15] CallSegmentID{b2} OPTIONAL,
+ legToBeCreated [16] LegID OPTIONAL,
+ ...,
+ ipRelatedInformation [17] IPRelatedInformation{b2} OPTIONAL
+}
+
+-- OPTIONAL parameters are only provided if modifications desired to basic call processing values.
+sendChargingInformation OPERATION ::= {
+ ARGUMENT SendChargingInformationArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | unexpectedComponentSequence | unexpectedParameter |
+ parameterOutOfRange | systemFailure | taskRefused | unexpectedDataValue |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-sendChargingInformation
+}
+
+-- Direction: SCF -> SSF, Timer: Tsci
+-- This operation is used to instruct the SSF on the charging information to send by the SSF.
+-- The charging information can either be sent back by means of signalling or internal
+-- if the SSF is located in the local exchange. In the local exchange
+-- this information may be used to update the charge meter or to create a standard call record.
+SendChargingInformationArg ::= SEQUENCE {
+ sCIBillingChargingCharacteristics [0] SCIBillingChargingCharacteristics{b2},
+ partyToCharge [1] LegID,
+ extensions [2] Extensions{b1} OPTIONAL,
+ nocharge [3] BOOLEAN OPTIONAL,
+ ...
+}
+
+sendFacilityInformation OPERATION ::= {
+ ARGUMENT SendFacilityInformationArg {b1}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | unexpectedComponentSequence | unexpectedParameter |
+ unexpectedDataValue | systemFailure | taskRefused | unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-sendFacilityInformation
+}
+
+-- SCF->SSF, Timer: Tsfi
+-- This operation is issued by the SCF during a BCSM being suspended at a DP to request the CCF/SSF
+-- sending a FACILITY IE to a user with a specified DSS1 message.
+SendFacilityInformationArg ::= SEQUENCE {
+ componentType [0] ComponentType,
+ legID [1] LegID OPTIONAL,
+ componentCorrelationID [2] ComponentCorrelationID OPTIONAL,
+ component [3] Component,
+ callProcessingOperation [4] CallProcessingOperation DEFAULT fACility,
+ extensions [5] Extensions{b1} OPTIONAL,
+ ...
+}
+
+-- FACILITY information will be delivered with the specified DSS1 message. The message is specified with the
+-- callProcessingOperation
+sendSTUI OPERATION ::= {
+ ARGUMENT SendSTUIArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | unexpectedComponentSequence |
+ unexpectedParameter | unexpectedDataValue | systemFailure | taskRefused |
+ unknownLegID}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-sendSTUI
+}
+
+-- Direction: SCF -> SSF. Timer: Tss
+-- This operation is issued by the SCF in the context of the USI feature. It is used to request the SSF
+-- to send a Service to User Information (USI information) data element to the indicated user.
+SendSTUIArg ::= SEQUENCE {
+ uSIServiceIndicator [0] USIServiceIndicator{b2},
+ legID [1] LegID --DEFAULT sendingSideID:leg1--,
+ uSIInformation [2] USIInformation{b2},
+ extensions [3] Extensions{b1} OPTIONAL,
+ ...
+}
+
+serviceFilteringResponse OPERATION ::= {
+ ARGUMENT ServiceFilteringResponseArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-serviceFilteringResponse
+}
+
+-- Direction: SSF -> SCF, Timer: Tsfr
+-- This operation is used to send back to the SCF the values of counters specified in a previous
+-- ActivateServiceFiltering operation
+ServiceFilteringResponseArg ::= SEQUENCE {
+ countersValue [0] CountersValue{b2},
+ filteringCriteria [1] FilteringCriteria{b2},
+ extensions [2] Extensions{b1} OPTIONAL,
+ responseCondition [3] ResponseCondition OPTIONAL,
+ ...
+}
+
+setServiceProfile OPERATION ::= {
+ ARGUMENT SetServiceProfileArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingParameter | parameterOutOfRange | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-setServiceProfile
+}
+
+-- Direction SCF -> SSF, Timer Tsep
+--This operation is used within the context of a call to request the SSF to activate/de-activate a list of trigger for one of the parties in the call.
+SetServiceProfileArg ::= SEQUENCE {
+ iNprofiles [0] SEQUENCE SIZE (1..--b2.&--numOfINProfile) OF INprofile{b1, b2},
+ ...,
+-- ...,
+ extensions [30] Extensions{b1} OPTIONAL
+}
+
+splitLeg OPERATION ::= {
+ ARGUMENT SplitLegArg {b1,
+ b2}
+ RETURN RESULT TRUE
+ ERRORS
+ {missingParameter | unexpectedComponentSequence | unexpectedParameter |
+ unexpectedDataValue | systemFailure | taskRefused | unknownLegID}
+ CODE opcode-splitLeg
+}
+
+-- Direction: SCF -> SSF. Timer: T sl
+-- This operation is issued by the SCF to separate one joined leg from a multi-way connection
+-- or a single 2 party Call segment.
+SplitLegArg ::= SEQUENCE {
+ legToBeSplit [0] LegID,
+ newCallSegment [1] INTEGER(2..--b2.&--numOfCSs),
+ extensions [2] Extensions{b1} OPTIONAL,
+ ...,
+ detachSignallingPath [3] NULL OPTIONAL
+}
+
+statusReport OPERATION ::= {
+ ARGUMENT StatusReportArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+ CODE opcode-statusReport
+}
+
+-- Direction: SSF -> SCF, Timer: Tsrp
+-- This operation is used as a response to RequestFirstStatusMatchReport or
+-- RequestEveryStatusChangeReport operations.
+StatusReportArg ::= SEQUENCE {
+ resourceStatus [0] ResourceStatus OPTIONAL,
+ correlationID [1] CorrelationID{b2} OPTIONAL,
+ resourceID [2] ResourceID{b2} OPTIONAL,
+ extensions [3] Extensions{b1} OPTIONAL,
+ reportCondition [4] ReportCondition OPTIONAL,
+ ...
+}
+
+-- For correlationID, OPTIONAL denotes network operator optional.
+-- resourceID is required when the SSF sends a report as an answer to a previous request when the
+-- correlationID was present.
+tAnswer OPERATION ::= {
+ ARGUMENT TAnswerArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ unexpectedComponentSequence | unexpectedParameter | unexpectedDataValue |
+ systemFailure | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-tAnswer
+}
+
+-- Direction: SSF -> SCF, Timer: Tta
+-- This operation is used to indicate that the call is accepted and answered by terminating party
+-- (e.g. terminating party goes offhook, Q.931 Connect message received, ISUP Answer message
+-- received) (DP - T_Answer).
+TAnswerArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ calledPartyBusinessGroupID [1] CalledPartyBusinessGroupID OPTIONAL,
+ calledPartySubaddress [2] CalledPartySubaddress{b2} OPTIONAL,
+ calledFacilityGroup [3] FacilityGroup OPTIONAL,
+ calledFacilityGroupMember [4] FacilityGroupMember OPTIONAL,
+ extensions [5] Extensions{b1} OPTIONAL,
+ componentType [6] ComponentType OPTIONAL,
+ component [7] Component OPTIONAL,
+ componentCorrelationID [8] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+tBusy OPERATION ::= {
+ ARGUMENT TBusyArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ unexpectedComponentSequence | unexpectedParameter | unexpectedDataValue |
+ systemFailure | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-tBusy
+}
+
+-- Direction: SSF -> SCF, Timer: Ttb
+-- This operation is used to indicate all resources in group busy (DP- TBusy).
+TBusyArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ busyCause [1] Cause{b2} OPTIONAL,
+ calledPartyBusinessGroupID [2] CalledPartyBusinessGroupID OPTIONAL,
+ calledPartySubaddress [3] CalledPartySubaddress{b2} OPTIONAL,
+ originalCalledPartyID [4] OriginalCalledPartyID{b2} OPTIONAL,
+ redirectingPartyID [5] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [6] RedirectionInformation OPTIONAL,
+ routeList [7] RouteList{b2} OPTIONAL,
+ travellingClassMark [8] TravellingClassMark{b2} OPTIONAL,
+ extensions [9] Extensions{b1} OPTIONAL,
+ ...
+}
+
+tDisconnect OPERATION ::= {
+ ARGUMENT TDisconnectArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ unexpectedComponentSequence | unexpectedParameter | unexpectedDataValue |
+ systemFailure | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-tDisconnect
+}
+
+-- Direction: SSF -> SCF, Timer: Ttd
+-- This operation is used for a disconnect indication (e.g. onhook, Q.931 Disconnect message,
+-- SS7 Release message) is received from the terminating party, or received from the originating party
+-- via the originating half BCSM. (DP - T_Disconnect).
+TDisconnectArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ calledPartyBusinessGroupID [1] CalledPartyBusinessGroupID OPTIONAL,
+ calledPartySubaddress [2] CalledPartySubaddress{b2} OPTIONAL,
+ calledFacilityGroup [3] FacilityGroup OPTIONAL,
+ calledFacilityGroupMember [4] FacilityGroupMember OPTIONAL,
+ releaseCause [5] Cause{b2} OPTIONAL,
+ extensions [6] Extensions{b1} OPTIONAL,
+ connectTime [7] Integer4 OPTIONAL,
+ componentType [8] ComponentType OPTIONAL,
+ component [9] Component OPTIONAL,
+ componentCorrelationID [10] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+termAttemptAuthorized OPERATION ::= {
+ ARGUMENT TermAttemptAuthorizedArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ unexpectedComponentSequence | unexpectedParameter | unexpectedDataValue |
+ systemFailure | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-termAttemptAuthorized
+}
+
+-- Direction: SSF -> SCF, Timer: Ttaa
+-- This operation is used for indication of incoming call received from originating half BCSM and authority
+-- to route call to a specified terminating resource (or group) verified. (DP - Termination_Authorized).
+TermAttemptAuthorizedArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ calledPartyBusinessGroupID [1] CalledPartyBusinessGroupID OPTIONAL,
+ calledPartySubaddress [2] CalledPartySubaddress{b2} OPTIONAL,
+ callingPartyBusinessGroupID [3] CallingPartyBusinessGroupID OPTIONAL,
+ originalCalledPartyID [4] OriginalCalledPartyID{b2} OPTIONAL,
+ redirectingPartyID [5] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [6] RedirectionInformation OPTIONAL,
+ routeList [7] RouteList{b2} OPTIONAL,
+ travellingClassMark [8] TravellingClassMark{b2} OPTIONAL,
+ extensions [9] Extensions{b1} OPTIONAL,
+ callingPartySubaddress [10] CallingPartySubaddress{b2} OPTIONAL,
+ ...
+}
+
+-- OPTIONAL parameters are only provided if modifications desired to basic call processing values
+terminationAttempt OPERATION ::= {
+ ARGUMENT TerminationAttemptArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ unexpectedComponentSequence | unexpectedParameter | unexpectedDataValue |
+ systemFailure | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-terminationAttempt
+}
+
+-- Direction: SSF -> SCF. Timer: Ttra
+-- This operation is used for indication of a call termination attempt from the terminating half BCSM. (DP -
+-- Termination_Attempt).
+TerminationAttemptArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ calledPartyBusinessGroupID [1] CalledPartyBusinessGroupID OPTIONAL,
+ calledPartySubaddress [2] CalledPartySubaddress{b2} OPTIONAL,
+ callingPartyBusinessGroupID [3] CallingPartyBusinessGroupID OPTIONAL,
+ callingPartySubaddress [4] CallingPartySubaddress{b2} OPTIONAL,
+ originalCalledPartyID [5] OriginalCalledPartyID{b2} OPTIONAL,
+ redirectingPartyID [6] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [7] RedirectionInformation OPTIONAL,
+ routeList [8] RouteList{b2} OPTIONAL,
+ travellingClassMark [9] TravellingClassMark{b2} OPTIONAL,
+ extensions [10] Extensions{b1} OPTIONAL,
+ ...
+}
+
+tMidCall OPERATION ::= {
+ ARGUMENT MidCallArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ unexpectedComponentSequence | unexpectedParameter | unexpectedDataValue |
+ systemFailure | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-tMidCall
+}
+
+-- Direction: SSF -> SCF, Timer: Ttmc
+-- This operation is used to indicate that a feature request is received from the terminating party (e.g. hook
+-- flash, ISDN feature activation Q.931 HOLD or RETrieve message). (DP - T_Mid_Call).
+tNoAnswer OPERATION ::= {
+ ARGUMENT TNoAnswerArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | parameterOutOfRange |
+ unexpectedComponentSequence | unexpectedParameter | unexpectedDataValue |
+ systemFailure | taskRefused}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-tNoAnswer
+}
+
+-- Direction: SSF -> SCF, Timer: Ttna
+-- This operation is used to indicate that the terminating party does not answer within a specified duration.
+-- (DP - T_No_Answer). .
+TNoAnswerArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ calledPartyBusinessGroupID [1] CalledPartyBusinessGroupID OPTIONAL,
+ calledPartySubaddress [2] CalledPartySubaddress{b2} OPTIONAL,
+ calledFacilityGroup [3] FacilityGroup OPTIONAL,
+ calledFacilityGroupMember [4] FacilityGroupMember OPTIONAL,
+ originalCalledPartyID [5] OriginalCalledPartyID{b2} OPTIONAL,
+ redirectingPartyID [6] RedirectingPartyID{b2} OPTIONAL,
+ redirectionInformation [7] RedirectionInformation OPTIONAL,
+ travellingClassMark [8] TravellingClassMark{b2} OPTIONAL,
+ extensions [9] Extensions{b1} OPTIONAL,
+ componentType [10] ComponentType OPTIONAL,
+ component [11] Component OPTIONAL,
+ componentCorrelationID [12] ComponentCorrelationID OPTIONAL,
+ ...
+}
+
+tSuspended OPERATION ::= {
+ ARGUMENT TSuspendedArg {b1,
+ b2}
+ RETURN RESULT FALSE
+ ERRORS
+ {missingCustomerRecord | missingParameter | systemFailure | taskRefused |
+ unexpectedComponentSequence | unexpectedDataValue | unexpectedParameter}
+ ALWAYS RESPONDS FALSE
+ CODE opcode-tSuspended
+}
+
+-- Direction: SSF -> SCF. Timer: T ts
+-- This operation is issued by the SSF after detecting a valid trigger condition at the T_Suspend DP or to
+-- report a tSuspended event requested by the RequestReportBCSMEvent.
+TSuspendedArg ::= SEQUENCE {
+ dpSpecificCommonParameters [0] DpSpecificCommonParameters{b1, b2},
+ legID [1] LegID OPTIONAL,
+ extensions [2] Extensions{b1} OPTIONAL,
+ ...
+}
+
+END
+
+-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
+
diff --git a/asn1/inap/IN-common-classes.asn b/asn1/inap/IN-common-classes.asn
new file mode 100644
index 0000000000..ca3ed53d81
--- /dev/null
+++ b/asn1/inap/IN-common-classes.asn
@@ -0,0 +1,354 @@
+-- Module IN-common-classes (Q.1248.1:07/2001)
+-- $Id$
+-- Small modifications made to the original due to as2wrs shortfalls, to be corrected.
+IN-common-classes {itu-t recommendation q 1248 modules(1) in-common-classes(5)
+ version1(0)} DEFINITIONS ::=
+BEGIN
+
+IMPORTS
+ id-package-emptyConnection, id-rosObject-scf, id-rosObject-cusf,
+ id-rosObject-sdf, id-rosObject-srf, id-rosObject-ssf,
+ ros-InformationObjects, ros-UsefulDefinitions, ssf-scf-Protocol,
+ scf-cusf-Protocol, scf-scf-Protocol, scf-srf-Protocol, scf-sdf-Protocol,
+ sdf-sdf-Protocol, common-datatypes
+ FROM IN-object-identifiers {itu-t recommendation q 1248 modules(1)
+ in-object-identifiers(0) version1(0)}
+ ROS-OBJECT-CLASS, CONTRACT, OPERATION-PACKAGE, Code, OPERATION,
+ CONNECTION-PACKAGE
+ FROM Remote-Operations-Information-Objects ros-InformationObjects
+ emptyBind
+ FROM Remote-Operations-Useful-Definitions ros-UsefulDefinitions
+ inAssistHandoffSsfToScf, inScfToSsfDpSpecific, inScfToSsfGeneric,
+ inScfToSsfStatusReporting, inScfToSsfServiceManagement,
+ inScfToSsfINTrafficManagement, inScfToSsfTrafficManagement,
+ inScfToSsfTriggerManagement, inSsfToScfDpSpecific, inSsfToScfGeneric,
+ inSsfToScfServiceManagement, inScfToSsfRouteMonitoring,
+ inSsfToScfRouteMonitoring
+ FROM IN-SSF-SCF-pkgs-contracts-acs ssf-scf-Protocol
+ cusfscfDPSpecificContract, scfcusfDPSpecificContract, cusfscfGenericContract,
+ scfcusfGenericContract
+ FROM IN-SCF-CUSF-Protocol scf-cusf-Protocol
+ dsspContract, scfc-scfsContract, scfs-scfcContract
+ FROM IN-SCF-SCF-pkgs-contracts-acs scf-scf-Protocol
+ srf-scf-contract
+ FROM IN-SCF-SRF-pkgs-contracts-acs scf-srf-Protocol
+ dapContract, dapExecuteContract, tfcContract
+ FROM IN-SCF-SDF-Protocol scf-sdf-Protocol
+ indspContract, shadowConsumerContract, shadowSupplierContract
+ FROM IN-SDF-SDF-Protocol sdf-sdf-Protocol
+ CriticalityType
+ FROM IN-common-datatypes common-datatypes;
+
+ssf ROS-OBJECT-CLASS ::= {
+ INITIATES
+ {inSsfToScfGeneric | inSsfToScfDpSpecific | inAssistHandoffSsfToScf |
+ inSsfToScfServiceManagement | inSsfToScfRouteMonitoring}
+ RESPONDS
+ {inScfToSsfGeneric | inScfToSsfDpSpecific | inScfToSsfINTrafficManagement |
+ inScfToSsfTrafficManagement | inScfToSsfServiceManagement |
+ inScfToSsfTriggerManagement | inScfToSsfStatusReporting |
+ inScfToSsfRouteMonitoring}
+ ID id-rosObject-ssf
+}
+
+-- The ssf class of ROS-object describes the communication capabilities of an SSF
+-- This object can act as the initiator of the following contracts
+--
+-- inSsfToScfGeneric contract expresses the form of the service in which the SSF,
+-- a ROS-object of class ssf, initiates the generic triggering approach contract.
+-- This dialogue is initiated by the SSF with the InitialDP Operation.
+-- inSsfToScfDpSpecific contract expresses the form of the service in which the SSF,
+-- a ROS-object of class ssf, initiates the DP specific approach contract.
+-- This dialogue is initiated by the SSF with the DP specific Initial Operations.
+-- inAssistHandoffSsfToScf contract expresses the form of the service in which the SSF,
+-- a ROS-object of class ssf, initiates the Assist or Hand-off contract.
+-- This dialogue is initiated by the SSF with the AssistRequestInstructions Operation.
+-- inSsfToScfServiceManagement contract expresses the form of the service in which the SSF,
+-- a ROS-object of class ssf, initiates ServiceManagement related contract for reporting
+-- service Management results. This dialogue is initiated/ended by the SSF with
+-- the ServicefilteringResponse Operation.
+-- inSsfToScfRouteMonitoring contract expresses the form of the service in which the SSF,
+-- a ROS-object of class ssf, initiates the reporting of route monitoring. This dialogue is
+-- initiated/ended by the SSF with the monitorRouteReport Operation
+-- This object can act as the responder of the following contracts
+--
+-- inScfToSsfGeneric contract expresses the form of the service in which the SSF,
+-- a ROS-object of class ssf, responds to the generic messaging approach for
+-- the SCF Initiate Call Attempt contract. This dialogue is initiated by the SCF with
+-- the InitiateCallAttempt or CreateCallSegmentAssociation, Generic case.
+-- inScfToSsfDpSpecific contract expresses the form of the service in which the SSF,
+-- a ROS-object of class ssf, responds to theDP specific messaging approach for the
+-- SCF Initiate Call Attempt contract. This dialogue is initiated by the SCF with
+-- the InitiateCallAttempt, DP Specific case.
+-- inScfToSsfINTrafficManagement contract expresses the form of service in which the SSF,
+-- a ROS object of class ssf, responds to theIN Traffic Management related contract.
+-- This dialogue is initiated by the SCF with the CallGap Operation
+-- inScfToSsfTrafficManagement contract expresses the form of service in which the SSF,
+-- a ROS object of class ssf, responds to the Traffic Management related contract.
+-- This dialogue is initiated by the SCF with the CallFiltering Operation
+-- inScfToSsfServiceManagement contract expresses the form of service in which the SSF,
+-- a ROS object of class ssf, responds to the Service Management related contract.
+-- This dialogue is initiated by the SCF with the ActivateServiceFiltering Operation
+-- inScfToSsfTriggerManagement contract expresses the form of service in which the SSF,
+-- a ROS object of class ssf, responds to the Trigger Management related contract.
+-- This dialogue is initiated by the SCF with the ManageTriggerData Operation
+-- inScfToSsfStatusReporting contract expresses the form of service in which the SSF,
+-- a ROS object of class ssf, responds to the Status Reporting related contract.
+-- This dialogue is initiated by the SCF with the StatusReporting Operations.
+-- inScfToSsfRouteMonitoring contract expresses the form of the service in which the SSF,
+-- a ROS-object of class ssf ,responds to the route monitoring request.
+-- This dialogue is initiated by the SCF with the monitorRouteRequest Operation.
+srf ROS-OBJECT-CLASS ::= {
+ INITIATES {srf-scf-contract}
+ ID id-rosObject-srf
+}
+
+-- The srf class of ROS-object describes the communication capabilities of an SRF
+-- This object can act as the initiator of the following contract
+--
+-- srf-scf-contract contract expresses the form of service in which the SRF, a ROS-object of class srf,
+-- initiates the srf related contract. This dialogue is initiated by the SRF with
+-- the AssistRequestInstruction Operation
+cusf ROS-OBJECT-CLASS ::= {
+ INITIATES {cusfscfDPSpecificContract | cusfscfGenericContract}
+ RESPONDS {scfcusfDPSpecificContract | scfcusfGenericContract}
+ ID id-rosObject-cusf
+}
+
+-- The cusf class of ROS-object describes the communication capabilities of an CUSF
+-- This object can act as the initiator of the following contracts
+--
+--cusfscfDPSpecificContract expresses the form of the service in which the CUSF,
+-- a ROS-object of class cusf, initiates the DP specific approach contract by using a DP specific operation.
+-- cusfscfGenericContract expresses the form of the service in which the CUSF,
+-- a ROS-object of class cusf, initiates the generic approach contract by using
+-- an InitialAssociationDP operation.
+--
+-- This object can act as the responder of the following contracts
+--
+--scfcusfDPSpecificContract expresses the form of the service in which the CUSF,
+-- a ROS-object of class cusf, responds the DP specific approach contract initiates by the SCF
+-- using an InitiateAssociation operation.
+-- scfcusfGenericContract expresses the form of the contract in which the CUSF,
+-- a ROS-object of class cusf, responds the generic approach contract initiates by the SCF
+-- using an InitiateAssociation operation.
+scf ROS-OBJECT-CLASS ::= {
+ INITIATES
+ {inScfToSsfGeneric | inScfToSsfDpSpecific | inScfToSsfINTrafficManagement |
+ inScfToSsfTrafficManagement | inScfToSsfServiceManagement |
+ inScfToSsfTriggerManagement | inScfToSsfStatusReporting |
+ inScfToSsfRouteMonitoring |
+ -- scf to sdf contracts
+ dapContract | dapExecuteContract |
+ -- scf to scf contracts
+ scfc-scfsContract | scfs-scfcContract | dsspContract |
+ -- tfc contract (scf to scf)
+ tfcContract |
+ -- scf to cusf contracts
+ scfcusfDPSpecificContract | scfcusfGenericContract}
+ RESPONDS
+ {inSsfToScfGeneric | inSsfToScfDpSpecific | inAssistHandoffSsfToScf |
+ inSsfToScfServiceManagement | inSsfToScfRouteMonitoring |
+ -- srf to scf contracts
+ srf-scf-contract |
+ -- tfc contract (scf to scf, sdf to scf)
+ tfcContract |
+ -- scf to scf contracts
+ scfc-scfsContract | scfs-scfcContract | dsspContract |
+ -- cusf to scf contracts
+ cusfscfDPSpecificContract | cusfscfGenericContract}
+ ID id-rosObject-scf
+}
+
+-- The scf class of ROS-object describes the communication capabilities of an SCF
+-- This object can act as the initiator of the following contracts
+--
+-- scf to ssf contracts
+-- inScfToSsfGeneric contract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf, initiates the generic messaging approach for the SCF
+-- Initiate Call Attempt contract. This dialogue is initiated by the SCF with the InitiateCallAttempt
+-- or CreateCallSegmentAssociation, Generic case.
+-- inScfToSsfDpSpecific contract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf, initiates theDP specific messaging approach for the SCF Initiate Call Attempt
+-- contract. This dialogue is initiated by the SCF with the InitiateCallAttempt, DP Specific case.
+-- inScfToSsfINTrafficManagement contract expresses the form of service in which the SCF,
+-- a ROS object of class scf, initiates the IN Traffic Management related contract. This dialogue is initiated
+-- by the SCF with the CallGap Operation
+-- inScfToSsfTrafficManagement contract expresses the form of service in which the SCF,
+-- a ROS object of class scf, initiates the Traffic Management related contract. This dialogue is initiated
+-- by the SCF with the CallFiltering Operation
+-- inScfToSsfServiceManagement contract expresses the form of service in which the SCF,
+-- a ROS object of class scf, initiates the Service Management related contract.
+-- This dialogue is initiated by the SCF with the ActivateServiceFiltering Operation
+-- inScfToSsfTriggerManagement contract expresses the form of service in which the SCF,
+-- a ROS object of class scf, initiates the Trigger Management related contract.
+-- This dialogue is initiated by the SCF with the ManageTriggerData Operation
+-- inScfToSsfStatusReporting contract expresses the form of service in which the SCF,
+-- a ROS object of class scf, initiates the Status Reporting related contract. This dialogue is initiated
+-- by the SCF with the StatusReporting Operations.
+-- inScfToSsfRouteMonitoring contract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf initiates the route monitoring request. This dialogue is initiated
+-- by the SCF with the monitorRouteRequest Operation.
+--
+-- scf to sdf
+-- dapContract contract expresses the form of service in which the SCF, a ROS object of class scf,
+-- initiates the SCF/SDF message exchange based on a DAP protocol (Search operation and Directory
+-- Modify operations).
+-- dapExecuteContract contract expresses the form of service in which the SCF, a ROS object of class scf,
+-- initiates the SCF/SDF message exchange based on a DAP protocol (Search operation and Directory
+-- Modify operations) plus the Execute operation.
+-- tfc contract (scf to scf)
+-- tfcContract contract expresses the form of service in which the SCF, a ROS object of class scf,
+-- initiates the traffic flow control mechanism.
+--
+-- scf to scf contracts
+-- scfc-scfsContract and scfs-scfcContract contracts expresse the form of service in which the controlling or
+-- supporting SCF, a ROS object of class scf, initiate the SCF/SCF message exchange.
+-- dsspContract contract expresses the form of service in which the SCF, a ROS object of class scf,
+-- initiates the chained SCF/SCF message exchange.
+--
+-- scf to cusf contracts
+--scfcusfDPSpecificContract expresses the form of the service in which the SCF, a ROS-object of class scf,
+-- initiates the DP specific approach contract by using an InitiateAssociation operation.
+-- scfcusfGenericContract expresses the form of the contract in which the SCF, a ROS-object of class scf,
+-- initiates the generic approach contract by using an InitiateAssociation operation.
+--
+-- This object can act as the responder of the following contracts
+--
+-- ssf to scf contracts
+-- inSsfToScfGeneric contract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf, responds to the generic triggering approach contract.
+-- This dialogue is initiated by the SSF with the InitialDP Operation.
+-- inSsfToScfDpSpecific contract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf, responds to the DP specific approach contract.
+-- This dialogue is initiated by the SSF with the DP specific Initial Operations.
+-- inAssistHandoffSsfToScf contract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf, responds to the Assist or Hand-off contract.
+-- This dialogue is initiated by the SSF with the AssistRequestInstructions Operation.
+-- inSsfToScfServiceManagement contract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf, responds to the ServiceManagement related contract for reporting
+-- Service Management results.
+-- This dialogue is initiated/ended by the SSF with the ServicefilteringResponse Operation.
+-- inSsfToScfRouteMonitoring contract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf ,responds to the route monitoring procedures.
+-- This dialogue is initiated/ended by the SSF with the monitorRouteReport Operation.
+--
+-- srf to scf contracts
+-- srf-scf-contract contract expresses the form of service in which the SCF, a ROS-object of class scf,
+-- responds to the srf related contract. This dialogue is initiated by the SRF with the AssistRequestInstruction
+-- tfc contract (scf to scf, sdf to scf)
+-- tfcContract contract expresses the form of service in which the SCF, a ROS object of class scf,
+-- responds to the traffic flow control contract initiated either by the SCF or the SDF.
+--
+-- scf to scf contracts
+-- scfc-scfsContract and scfs-scfcContract contracts express the form of service in which the controlling or
+-- supporting SCF, a ROS object of class scf, responds the SCF/SCF message exchange.
+-- dsspContract contract expresses the form of service in which the SCF, a ROS object of class scf,
+-- responds to the previously initiated chained SCF/SCF message exchange.
+--
+-- cusf to scf contracts
+-- cusfscfDPSpecificContract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf, responds to the DP specific approach contract.
+-- cusfscfGenericContract expresses the form of the service in which the SCF,
+-- a ROS-object of class scf, responds to the generic approach contract.
+sdf ROS-OBJECT-CLASS ::= {
+ INITIATES
+ {indspContract | shadowConsumerContract | shadowSupplierContract |
+ tfcContract}
+ RESPONDS
+ {dapContract | dapExecuteContract | indspContract | shadowConsumerContract
+ | shadowSupplierContract | tfcContract}
+ ID id-rosObject-sdf
+}
+
+-- The sdf class of ROS-Object describes the communication capabilities of an SDF
+-- This object can act as the initiator of the following contracts
+-- indspContract contract expresses the form of service in which the SDF, a ROS object of class sdf,
+-- initiates the chained SCF/SDF message exchange, based on the DSP protocol.
+-- shadowConsumerContract contract expresses the form of service in which the SDF,
+-- a ROS object of class sdf, initiates the shadowing mechanism as a shadow consumer,
+-- based on the DISP protocol.
+-- shadowSupplierContract contract expresses the form of service in which the SDF,
+-- a ROS object of class sdf, initiates the shadowing mechanism as a shadow supplier,
+-- based on the DISP protocol.
+-- tfcContract contract expresses the form of service in which the SDF, a ROS object of class sdf,
+-- initiates the traffic flow control mechanism.
+-- This object can act as the responder of the following contracts
+-- dapContract contract expresses the form of service in which the SDF, a ROS object of class sdf,
+-- responds to the previously initiated SCF/SDF message exchange.
+-- dapExecuteContract contract expresses the form of service in which the SDF, a ROS object of class sdf,
+-- responds to the previously initiated SCF/SDF message exchange.
+-- indspContract contract expresses the form of service in which the SDF, a ROS object of class sdf,
+-- responds to the previously initiated chained SCF/SDF message exchange.
+-- shadowConsumerContract contract expresses the form of service in which the SDF,
+-- a ROS object of class sdf, responds to the previously initiated shadowing mechanism.
+-- shadowSupplierContract contract expresses the form of service in which the SDF,
+-- a ROS object of class sdf, responds to the previously initiated shadowing mechanism.
+-- tfcContract contract expresses the form of service in which the SDF, a ROS object of class sdf,
+-- responds to the traffic flow control initiated by the SDF.
+-- Definition of the extension class
+EXTENSION ::= CLASS {
+ &ExtensionType ,
+ &criticality CriticalityType DEFAULT ignore,
+ &id Code
+}
+WITH SYNTAX {
+ EXTENSION-SYNTAX &ExtensionType
+ [CRITICALITY &criticality]
+ IDENTIFIED BY &id
+}
+
+-- Example of addition of an extension named 'Some Network Specific Indicator' of type
+-- BOOLEAN, with criticality 'abort' and to be identified as extension number 1
+-- Example of definition using the above information object class:
+--
+-- SomeNetworkSpecificIndicator EXTENSION ::= {
+-- EXTENSION-SYNTAX BOOLEAN
+-- CRITICALITY abort
+-- IDENTIFIED BY local : 1
+-- }
+-- Example of transfer syntax, using the ExtensionField datatype as specified in section 4.1.
+-- Assuming the value of the extension is set to TRUE, the extensions parameter
+-- becomes a Sequence of type INTEGER ::= 1, criticality ENUMERATED ::= 1 and value [1]
+-- EXPLICIT BOOLEAN ::= TRUE.
+--
+-- Use of Q.1400 defined Extension is ffs
+-- In addition the extension mechanism marker is used to identify the future minor additions to INAP.
+firstExtension EXTENSION ::= {
+ EXTENSION-SYNTAX NULL
+ CRITICALITY ignore
+ IDENTIFIED BY local:1
+}
+
+-- firstExtension is just an example.
+SupportedExtensions EXTENSION ::=
+ {firstExtension, ...
+ -- full set of network operator extensions --}
+
+-- SupportedExtension is the full set of the network operator extensions.
+inUnbind OPERATION ::= {RETURN RESULT FALSE
+ ALWAYS RESPONDS FALSE
+}
+
+emptyConnectionPackage CONNECTION-PACKAGE ::= {
+ BIND emptyBind
+ UNBIND inUnbind
+ RESPONDER UNBIND TRUE
+ ID id-package-emptyConnection
+}
+
+EmptyReturnable OPERATION ::=
+ {...}
+
+COMMON-BOUNDS ::= CLASS {&numOfExtensions INTEGER OPTIONAL
+}WITH SYNTAX {[NUM-OF-EXTENSIONS &numOfExtensions]
+}
+
+-- The following instance of the parameter bound is just an example
+networkSpecificBoundSet COMMON-BOUNDS ::= {NUM-OF-EXTENSIONS 1
+}
+
+END
+
+-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
+
diff --git a/asn1/inap/IN-common-datatypes.asn b/asn1/inap/IN-common-datatypes.asn
new file mode 100644
index 0000000000..816c835a76
--- /dev/null
+++ b/asn1/inap/IN-common-datatypes.asn
@@ -0,0 +1,42 @@
+-- Module IN-common-datatypes (Q.1248.1:07/2001)
+-- $Id$
+-- Small modifications made to the original due to as2wrs shortfalls, to be corrected.
+IN-common-datatypes {itu-t recommendation q 1248 modules(1)
+ in-common-datatypes(1) version1(0)} DEFINITIONS IMPLICIT TAGS ::=
+BEGIN
+
+IMPORTS
+ common-classes
+ FROM IN-object-identifiers {itu-t recommendation q 1248 modules(1)
+ in-object-identifiers(0) version1(0)}
+ EXTENSION, COMMON-BOUNDS, SupportedExtensions
+ FROM IN-common-classes common-classes;
+
+CriticalityType ::= ENUMERATED {ignore(0), abort(1)}
+
+Extensions{COMMON-BOUNDS:b1} ::=
+ SEQUENCE SIZE (1..numOfExtensions) OF ExtensionField
+
+ExtensionField ::= SEQUENCE {
+ type EXTENSION.&id({SupportedExtensions}),
+ -- shall identify the value of an EXTENSION type
+ criticality CriticalityType DEFAULT ignore,
+ value [1] EXTENSION.&ExtensionType({SupportedExtensions}{@type})
+}
+
+--This parameter indicates an extension of an argument data type. Its content is network operator specific
+Integer4 ::= INTEGER(0..2147483647)
+
+InvokeID ::= INTEGER(-128..127)
+
+UnavailableNetworkResource ::= ENUMERATED {
+ unavailableResources(0), componentFailure(1),
+ basicCallProcessingException(2), resourceStatusFailure(3), endUserFailure(4),
+ screening(5)}
+
+-- Indicates the network resource that failed
+-- Note that in IN CS4 the screening value can only be used by the SCF.
+END
+
+-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
+
diff --git a/asn1/inap/IN-object-identifiers.asn b/asn1/inap/IN-object-identifiers.asn
new file mode 100644
index 0000000000..c84c240b0c
--- /dev/null
+++ b/asn1/inap/IN-object-identifiers.asn
@@ -0,0 +1,722 @@
+-- $Id$
+-- Small modifications made to the original due to as2wrs shortfalls, to be corrected.
+-- Module IN-object-identifiers (Q.1248.1:07/2001)
+IN-object-identifiers {itu-t recommendation q 1248 modules(1)
+ in-object-identifiers(0) version1(0)} DEFINITIONS ::=
+BEGIN
+
+-- For Modules from TCAP, ROS,
+tc-Messages OBJECT IDENTIFIER ::=
+ {itu-t recommendation q 773 modules(2) messages(1) version3(3)}
+
+tc-NotationExtensions OBJECT IDENTIFIER ::=
+ {itu-t recommendation q 775 modules(2) notation-extension(4) version1(1)}
+
+ros-InformationObjects OBJECT IDENTIFIER ::=
+ {joint-iso-itu-t remote-operations(4) informationObjects(5) version1(0)}
+
+ros-genericPDUs OBJECT IDENTIFIER ::=
+ {joint-iso-itu-t remote-operations(4) generic-ROS-PDUs(6) version1(0)}
+
+ros-UsefulDefinitions OBJECT IDENTIFIER ::=
+ {joint-iso-itu-t remote-operations(4) useful-definitions(7) version1(0)}
+
+sese-APDUs OBJECT IDENTIFIER ::=
+ {joint-iso-itu-t genericULS(20) modules(1) seseAPDUs(6)}
+
+guls-Notation OBJECT IDENTIFIER ::=
+ {joint-iso-itu-t genericULS(20) modules(1) notation(1)}
+
+guls-SecurityTransformations OBJECT IDENTIFIER ::=
+ {joint-iso-itu-t genericULS(20) modules(1) gulsSecurityTransformations(3)}
+
+guls-DirectoryProtectionMappings OBJECT IDENTIFIER ::=
+ {joint-iso-itu-t genericULS(20) modules(1) dirProtectionMappings(4)}
+
+ds-UsefulDefinitions OBJECT IDENTIFIER ::=
+ {joint-iso-itu-t ds(5) module(1) usefulDefinitions(0) 3}
+
+spkmGssTokens OBJECT IDENTIFIER ::=
+ {iso(1) identified-organization(3) dod(6) internet(1) security(5)
+ mechanisms(5) spkm(1) spkmGssTokens(10)}
+
+-- For IN-CS1 Modules
+contexts OBJECT IDENTIFIER ::=
+ {itu-t recommendation q 1218 modules(0) contexts(8) selectedContexts(1)
+ version(1)}
+
+-- For IN CS4 Modules
+id OBJECT IDENTIFIER ::= {itu-t recommendation q 1248}
+
+modules OBJECT IDENTIFIER ::= {id modules(1)}
+
+id-ac OBJECT IDENTIFIER ::= {id ac(3)}
+
+id-at OBJECT IDENTIFIER ::= {id at(4)}
+
+id-as OBJECT IDENTIFIER ::= {id as(5)}
+
+id-oc OBJECT IDENTIFIER ::= {id oc(6)}
+
+id-mt OBJECT IDENTIFIER ::= {id mt(7)}
+
+id-sf OBJECT IDENTIFIER ::= {id sf(11)}
+
+id-soa OBJECT IDENTIFIER ::= {id soa(21)}
+
+id-aca OBJECT IDENTIFIER ::= {id aca(24)}
+
+id-rosObject OBJECT IDENTIFIER ::= {id rosObject(25)}
+
+id-contract OBJECT IDENTIFIER ::= {id contract(26)}
+
+id-package OBJECT IDENTIFIER ::= {id package(27)}
+
+id-avc OBJECT IDENTIFIER ::= {id avc(29)}
+
+object-identifiers OBJECT IDENTIFIER ::=
+ {modules in-object-identifiers(0) version1(0)}
+
+common-datatypes OBJECT IDENTIFIER ::=
+ {modules in-common-datatypes(1) version1(0)}
+
+errortypes OBJECT IDENTIFIER ::= {modules in-errortypes(2) version1(0)}
+
+operationcodes OBJECT IDENTIFIER ::= {modules in-operationcodes(3) version1(0)}
+
+errorcodes OBJECT IDENTIFIER ::= {modules in-errorcodes(4) version1(0)}
+
+common-classes OBJECT IDENTIFIER ::= {modules in-common-classes(5) version1(0)}
+
+ssf-scf-datatypes OBJECT IDENTIFIER ::=
+ {modules in-ssf-scf-datatypes(6) version1(0)}
+
+ssf-scf-classes OBJECT IDENTIFIER ::=
+ {modules in-ssf-scf-classes(7) version1(0)}
+
+ssf-scf-Operations OBJECT IDENTIFIER ::=
+ {modules in-ssf-scf-ops-args(8) version1(0)}
+
+ssf-scf-Protocol OBJECT IDENTIFIER ::=
+ {modules in-ssf-scf-pkgs-contracts-acs(9) version1(0)}
+
+scf-srf-datatypes OBJECT IDENTIFIER ::=
+ {modules in-scf-srf-datatypes(10) version1(0)}
+
+scf-srf-classes OBJECT IDENTIFIER ::=
+ {modules in-scf-srf-classes(11) version1(0)}
+
+scf-srf-Operations OBJECT IDENTIFIER ::=
+ {modules in-scf-srf-ops-args(12) version1(0)}
+
+scf-srf-Protocol OBJECT IDENTIFIER ::=
+ {modules in-scf-srf-pkgs-contracts-acs(13) version1(0)}
+
+scf-sdf-datatypes OBJECT IDENTIFIER ::=
+ {modules in-scf-sdf-datatypes(14) version1(0)}
+
+scf-sdf-classes OBJECT IDENTIFIER ::=
+ {modules in-scf-sdf-classes(15) version1(0)}
+
+scf-sdf-Operations OBJECT IDENTIFIER ::=
+ {modules in-scf-sdf-ops-args(16) version1(0)}
+
+scf-sdf-Protocol OBJECT IDENTIFIER ::=
+ {modules in-scf-sdf-pkgs-contracts-acs(17) version1(0)}
+
+sdf-sdf-Operations OBJECT IDENTIFIER ::=
+ {modules in-sdf-sdf-ops-args(18) version1(0)}
+
+sdf-sdf-Protocol OBJECT IDENTIFIER ::=
+ {modules in-sdf-sdf-pkgs-contracts-acs(19) version1(0)}
+
+scf-scf-datatypes OBJECT IDENTIFIER ::=
+ {modules in-scf-scf-datatypes(20) version1(0)}
+
+scf-scf-classes OBJECT IDENTIFIER ::=
+ {modules in-scf-scf-classes(21) version1(0)}
+
+scf-scf-Operations OBJECT IDENTIFIER ::=
+ {modules in-scf-scf-ops-args(22) version1(0)}
+
+scf-scf-Protocol OBJECT IDENTIFIER ::=
+ {modules in-scf-scf-pkgs-contracts-acs(23) version1(0)}
+
+scf-cusf-datatypes OBJECT IDENTIFIER ::=
+ {modules in-scf-cusf-datatypes(24) version1(0)}
+
+scf-cusf-classes OBJECT IDENTIFIER ::=
+ {modules in-scf-cusf-classes(25) version1(0)}
+
+scf-cusf-Operations OBJECT IDENTIFIER ::=
+ {modules in-scf-cusf-ops-args(26) version1(0)}
+
+scf-cusf-Protocol OBJECT IDENTIFIER ::=
+ {modules in-scf-cusf-pkgs-contracts-acs(27) version1(0)}
+
+scf-sdf-Additional-Definitions OBJECT IDENTIFIER ::=
+ {modules in-scf-sdf-additional-definitions(28) version1(0)}
+
+-- Application Context
+-- SSF/SCF Application Context
+id-ac-ssf-scfGenericAC OBJECT IDENTIFIER ::=
+ {id-ac ssf-scfGenericAC(4) version1(0)}
+
+id-ac-ssf-scfDPSpecificAC OBJECT IDENTIFIER ::=
+ {id-ac ssf-scfDPSpecificAC(5) version1(0)}
+
+id-ac-ssf-scfAssistHandoffAC OBJECT IDENTIFIER ::=
+ {id-ac ssf-scfAssistHandoffAC(6) version1(0)}
+
+id-ac-ssf-scfServiceManagementAC OBJECT IDENTIFIER ::=
+ {id-ac ssf-scfServiceManagementAC(7) version1(0)}
+
+id-ac-scf-ssfGenericAC OBJECT IDENTIFIER ::=
+ {id-ac scf-ssfGenericAC(8) version1(0)}
+
+id-ac-scf-ssfDPSpecificAC OBJECT IDENTIFIER ::=
+ {id-ac scf-ssfDPSpecificAC(9) version1(0)}
+
+id-ac-scf-ssfINTrafficManagementAC OBJECT IDENTIFIER ::=
+ {id-ac scf-ssfINTrafficManagementAC(10) version1(0)}
+
+id-ac-scf-ssfServiceManagementAC OBJECT IDENTIFIER ::=
+ {id-ac scf-ssfServiceManagementAC(11) version1(0)}
+
+id-ac-scf-ssfStatusReportingAC OBJECT IDENTIFIER ::=
+ {id-ac scf-ssfStatusReportingAC(12) version1(0)}
+
+id-ac-scf-ssfTriggerManagementAC OBJECT IDENTIFIER ::=
+ {id-ac scf-ssfTriggerManagementAC(13) version1(0)}
+
+id-ac-scf-ssfRouteMonitoringAC OBJECT IDENTIFIER ::=
+ {id-ac scf-ssfRouteMonitorinAC(33) version1(0)}
+
+id-ac-ssf-scfRouteMonitoringAC OBJECT IDENTIFIER ::=
+ {id-ac ssf-scfRouteMonitorinAC(34) version1(0)}
+
+id-ac-scf-ssfTrafficManagementAC OBJECT IDENTIFIER ::=
+ {id-ac scf-ssfTrafficManagementAC(35) version1(0)}
+
+-- SRF/SCF Application Context
+id-ac-srf-scfAC OBJECT IDENTIFIER ::=
+ {id-ac srf-scfAC(14) version1(0)}
+
+--SCF-SDF - application contexts
+id-ac-indirectoryAccessAC OBJECT IDENTIFIER ::=
+ {id-ac indirectoryAccessAC(1) version1(0)}
+
+id-ac-indirectoryAccessWith3seAC OBJECT IDENTIFIER ::=
+ {id-ac indirectoryAccessWith3seAC(2) version1(0)}
+
+id-ac-inExtendedDirectoryAccessAC OBJECT IDENTIFIER ::=
+ {id-ac inExtendedDirectoryAccessAC(3) version1(0)}
+
+id-ac-inExtendedDirectoryAccessWith3seAC OBJECT IDENTIFIER ::=
+ {id-ac inExtendedDirectoryAccessWith3seAC(27) version1(0)}
+
+id-ac-trafficFlowControlAC OBJECT IDENTIFIER ::=
+ {id-ac trafficFlowControlAC(28) version1(0)}
+
+--SDF-SDF Application Contexts
+id-ac-indirectorySystemAC OBJECT IDENTIFIER ::=
+ {id-ac indirectorySystemAC(15) version1(0)}
+
+id-ac-inShadowSupplierInitiatedAC OBJECT IDENTIFIER ::=
+ {id-ac inShadowSupplierInitiatedAC(16) version1(0)}
+
+id-ac-inShadowConsumerInitiatedAC OBJECT IDENTIFIER ::=
+ {id-ac inShadowConsumerInitiatedAC(17) version1(0)}
+
+id-ac-indirectorySystemWith3seAC OBJECT IDENTIFIER ::=
+ {id-ac indirectorySystemWith3seAC(18) version1(0)}
+
+id-ac-inShadowSupplierInitiatedWith3seAC OBJECT IDENTIFIER ::=
+ {id-ac inShadowSupplierInitiatedWith3seAC(19) version1(0)}
+
+id-ac-inShadowConsumerInitiatedWith3seAC OBJECT IDENTIFIER ::=
+ {id-ac inShadowConsumerInitiatedWith3seAC(20) version1(0)}
+
+-- SCF/SCF Application Context
+id-ac-scfc-scfsOperationsAC OBJECT IDENTIFIER ::=
+ {id-ac scfc-scfsOperationsAC(21) version1(0)}
+
+id-ac-distributedSCFSystemAC OBJECT IDENTIFIER ::=
+ {id-ac distributedSCFSystemAC(22) version1(0)}
+
+id-ac-scfc-scfsOperationsWith3seAC OBJECT IDENTIFIER ::=
+ {id-ac scfc-scfsOperationsWith3seAC(23) version1(0)}
+
+id-ac-distributedSCFSystemWith3seAC OBJECT IDENTIFIER ::=
+ {id-ac distributedSCFSystemWith3seAC(24) version1(0)}
+
+id-ac-scfs-scfcOperationsAC OBJECT IDENTIFIER ::=
+ {id-ac scfs-scfcOperationsAC(31) version1(0)}
+
+id-ac-scfs-scfcOperationsWith3seAC OBJECT IDENTIFIER ::=
+ {id-ac scfs-scfcOperationsWith3seAC(32) version1(0)}
+
+-- CUSF/SCF Application Context
+id-acscfcusfDPSpecific OBJECT IDENTIFIER ::=
+ {id-ac scf-cusf-DPSpecific(25) version1(0)}
+
+id-accusfscfDPSpecific OBJECT IDENTIFIER ::=
+ {id-ac cusf-scf-DPSpecific(26) version1(0)}
+
+id-acscfcusfGeneric OBJECT IDENTIFIER ::=
+ {id-ac scf-cusf-Generic(29) version1(0)}
+
+id-accusfscfGeneric OBJECT IDENTIFIER ::=
+ {id-ac cusf-scf-Generic(30) version1(0)}
+
+-- Attributes
+-- SCF/SDF attributes
+id-at-securityFacilityId OBJECT IDENTIFIER ::=
+ {id-at securityFacilityId(1)}
+
+id-at-secretKey OBJECT IDENTIFIER ::= {id-at secretKey(2)}
+
+id-at-identifierList OBJECT IDENTIFIER ::= {id-at identifierList(3)}
+
+id-at-bindLevelIfOK OBJECT IDENTIFIER ::= {id-at bindLevelIfOK(4)}
+
+id-at-lockSession OBJECT IDENTIFIER ::= {id-at lockSession(5)}
+
+id-at-failureCounter OBJECT IDENTIFIER ::= {id-at failureCounter(6)}
+
+id-at-maxAttempts OBJECT IDENTIFIER ::= {id-at maxAttempts(7)}
+
+id-at-currentList OBJECT IDENTIFIER ::= {id-at currentList(8)}
+
+id-at-stockId OBJECT IDENTIFIER ::= {id-at stockId(9)}
+
+id-at-source OBJECT IDENTIFIER ::= {id-at source(10)}
+
+id-at-sizeOfRestocking OBJECT IDENTIFIER ::= {id-at sizeOfRestocking(11)}
+
+id-at-challengeResponse OBJECT IDENTIFIER ::= {id-at challengeResponse(12)}
+
+-- Abstract Syntaxes
+-- SSF/SCF Abstract Syntaxes
+id-as-ssf-scfGenericAS OBJECT IDENTIFIER ::=
+ {id-as ssf-scfGenericAS(4)}
+
+id-as-ssf-scfDpSpecificAS OBJECT IDENTIFIER ::= {id-as ssf-scfDpSpecificAS(5)}
+
+id-as-assistHandoff-ssf-scfAS OBJECT IDENTIFIER ::=
+ {id-as assistHandoff-ssf-scfAS(6)}
+
+id-as-scf-ssfGenericAS OBJECT IDENTIFIER ::= {id-as scf-ssfGenericAS(7)}
+
+id-as-scf-ssfDpSpecificAS OBJECT IDENTIFIER ::= {id-as scf-ssfDpSpecificAS(8)}
+
+id-as-scf-ssfINTrafficManagementAS OBJECT IDENTIFIER ::=
+ {id-as scf-ssfINTrafficManagementAS(9)}
+
+id-as-scf-ssfServiceManagementAS OBJECT IDENTIFIER ::=
+ {id-as scf-ssfServiceManagementAS(10)}
+
+id-as-ssf-scfServiceManagementAS OBJECT IDENTIFIER ::=
+ {id-as ssf-scfServiceManagementAS(11)}
+
+id-as-scf-ssfStatusReportingAS OBJECT IDENTIFIER ::=
+ {id-as scf-ssfStatusReportingAS(12)}
+
+id-as-scf-ssfTriggerManagementAS OBJECT IDENTIFIER ::=
+ {id-as scf-ssfTriggerManagementAS(13)}
+
+id-as-scf-ssfRouteMonitoringAS OBJECT IDENTIFIER ::=
+ {id-as scf-ssfRouteMonitoringAS(31)}
+
+id-as-ssf-scfRouteMonitoringAS OBJECT IDENTIFIER ::=
+ {id-as ssf-scfRouteMonitoringAS(32)}
+
+id-as-scf-ssfTrafficManagementAS OBJECT IDENTIFIER ::=
+ {id-as scf-ssfTrafficManagementAS(33)}
+
+-- SRF/SCF Abstract Syntaxes
+id-as-basic-srf-scf OBJECT IDENTIFIER ::=
+ {id-as basic-srf-scf(14)}
+
+id-as-basic-scf-srf OBJECT IDENTIFIER ::= {id-as basic-scf-srf(15)}
+
+-- SCF-SDF - abstract syntaxes
+id-as-indirectoryOperationsAS OBJECT IDENTIFIER ::=
+ {id-as indirectoryOperationsAS(1)}
+
+id-as-indirectoryBindingAS OBJECT IDENTIFIER ::=
+ {id-as indirectoryBindingAS(2)}
+
+id-as-inExtendedDirectoryOperationsAS OBJECT IDENTIFIER ::=
+ {id-as inExtendedDirectoryOperationsAS(3)}
+
+id-as-inSESEAS OBJECT IDENTIFIER ::= {id-as inSESEAS(25)}
+
+id-as-tfcOperationsAS OBJECT IDENTIFIER ::= {id-as tfcOperationsAS(26)}
+
+id-as-tfcBindingAS OBJECT IDENTIFIER ::= {id-as tfcBindingAS(27)}
+
+-- SDF-SDF - abstract syntaxes
+id-as-indirectorySystemAS OBJECT IDENTIFIER ::=
+ {id-as indirectorySystemAS(16)}
+
+id-as-indirectoryDSABindingAS OBJECT IDENTIFIER ::=
+ {id-as indirectoryDSABindingAS(17)}
+
+id-as-indirectoryShadowAS OBJECT IDENTIFIER ::= {id-as indirectoryShadowAS(18)}
+
+id-as-indsaShadowBindingAS OBJECT IDENTIFIER ::=
+ {id-as indsaShadowBindingAS(19)}
+
+-- SCF/SCF Abstract Syntaxes
+id-as-scfc-scfsOperationsAS OBJECT IDENTIFIER ::=
+ {id-as scfc-scfsOperationsAS(20)}
+
+id-as-distributedSCFSystemAS OBJECT IDENTIFIER ::=
+ {id-as distributedSCFSystemAS(21)}
+
+id-as-scf-scfBindingAS OBJECT IDENTIFIER ::= {id-as scf-scfBindingAS(22)}
+
+id-as-scfs-scfcOperationsAS OBJECT IDENTIFIER ::=
+ {id-as scfs-scfcOperationsAS(30)}
+
+-- CUSF/SCF Abstract Syntaxes
+id-asscfcusfDPSpecific OBJECT IDENTIFIER ::=
+ {id-as scf-cusf-DPSpecific(23)}
+
+id-ascusfscfDPSpecific OBJECT IDENTIFIER ::= {id-as cusf-scf-DPSpecific(24)}
+
+id-asscfcusfGeneric OBJECT IDENTIFIER ::= {id-as scf-cusf-Generic(28)}
+
+id-ascusfscfGeneric OBJECT IDENTIFIER ::= {id-as cusf-scf-Generic(29)}
+
+-- Object Class
+-- for SCF-SDF interface, Object Class
+id-oc-securityUserInfo OBJECT IDENTIFIER ::=
+ {id-oc securityUserInfo(1)}
+
+id-oc-tokensStock OBJECT IDENTIFIER ::= {id-oc tokenStock(2)}
+
+-- Methods
+-- for SCF-SDF interface, Methods
+id-mt-verifyCredentials OBJECT IDENTIFIER ::=
+ {id-mt verifyCredentials(1)}
+
+id-mt-conformCredentials OBJECT IDENTIFIER ::= {id-mt conformCredentials(2)}
+
+id-mt-provideTokens OBJECT IDENTIFIER ::= {id-mt provideTokens(3)}
+
+id-mt-fillSecurityTokens OBJECT IDENTIFIER ::= {id-mt fillSecurityTokens(4)}
+
+-- Security Facility
+-- for SCF-SDF interface, Security Facility
+id-sf-pwd OBJECT IDENTIFIER ::=
+ {id-sf pwd(1)}
+
+id-sf-challengeResponse OBJECT IDENTIFIER ::= {id-sf challengeResponse(2)}
+
+id-sf-onAirSubscription OBJECT IDENTIFIER ::= {id-sf onAirSubscription(3)}
+
+-- for SDF-SDF interface, SDF Attributes
+id-soa-methodRuleUse OBJECT IDENTIFIER ::=
+ {id-soa methodRuleUse(1)}
+
+id-aca-prescriptiveACI OBJECT IDENTIFIER ::= {id-aca prescriptiveACI(4)}
+
+id-aca-entryACI OBJECT IDENTIFIER ::= {id-aca entryACI(5)}
+
+id-aca-subentryACI OBJECT IDENTIFIER ::= {id-aca subentryACI(6)}
+
+-- for ac, as, rosObject, contract and package, the values are identical to Q1228
+-- ROS Objects
+id-rosObject-scf OBJECT IDENTIFIER ::=
+ {id-rosObject scf(1)}
+
+id-rosObject-ssf OBJECT IDENTIFIER ::= {id-rosObject ssf(2)}
+
+id-rosObject-srf OBJECT IDENTIFIER ::= {id-rosObject srf(3)}
+
+id-rosObject-sdf OBJECT IDENTIFIER ::= {id-rosObject sdf(4)}
+
+id-rosObject-cusf OBJECT IDENTIFIER ::= {id-rosObject cusf(5)}
+
+-- Contracts
+-- SSF/SCF Contracts
+id-inSsfToScfGeneric OBJECT IDENTIFIER ::=
+ {id-contract inSsfToScfGeneric(3)}
+
+id-inSsfToScfDpSpecific OBJECT IDENTIFIER ::=
+ {id-contract inSsfToScfDpSpecific(4)}
+
+id-inAssistHandoffSsfToScf OBJECT IDENTIFIER ::=
+ {id-contract inAssistHandoffSsfToScf(5)}
+
+id-inScfToSsfGeneric OBJECT IDENTIFIER ::= {id-contract inScfToSsfGeneric(6)}
+
+id-inScfToSsfDpSpecific OBJECT IDENTIFIER ::=
+ {id-contract inScfToSsfDpSpecific(7)}
+
+id-inScfToSsfINTrafficManagement OBJECT IDENTIFIER ::=
+ {id-contract inScfToSsfINTrafficManagement(8)}
+
+id-inScfToSsfServiceManagement OBJECT IDENTIFIER ::=
+ {id-contract inScfToSsfServiceManagement(9)}
+
+id-inSsfToScfServiceManagement OBJECT IDENTIFIER ::=
+ {id-contract inSsfToScfServiceManagement(10)}
+
+id-inScfToSsfStatusReporting OBJECT IDENTIFIER ::=
+ {id-contract inScfToSsfStatusReporting(11)}
+
+id-inScfToSsfTriggerManagement OBJECT IDENTIFIER ::=
+ {id-contract inScfToSsfTriggerManagement(12)}
+
+id-inScfToSsfRouteMonitoring OBJECT IDENTIFIER ::=
+ {id-contract inScfToSsfRouteMonitoring(26)}
+
+id-inSsfToScfRouteMonitoring OBJECT IDENTIFIER ::=
+ {id-contract inSsfToScfRouteMonitoring(27)}
+
+id-inScfToSsfTrafficManagement OBJECT IDENTIFIER ::=
+ {id-contract inScfToSsfTrafficManagement(28)}
+
+-- SRF/SCF Contracts
+id-contract-srf-scf OBJECT IDENTIFIER ::=
+ {id-contract srf-scf(13)}
+
+-- SCF-SDF contracts
+id-contract-dap OBJECT IDENTIFIER ::= {id-contract dap(1)}
+
+id-contract-dapExecute OBJECT IDENTIFIER ::= {id-contract dapExecute(2)}
+
+id-contract-tfc OBJECT IDENTIFIER ::= {id-contract tfc(22)}
+
+-- SDF - SDF Contracts.
+id-contract-indsp OBJECT IDENTIFIER ::=
+ {id-contract indsp(14)}
+
+id-contract-shadowConsumer OBJECT IDENTIFIER ::=
+ {id-contract shadowConsumer(15)}
+
+id-contract-shadowSupplier OBJECT IDENTIFIER ::=
+ {id-contract shadowSupplier(17)}
+
+-- SCF/SCF Contracts
+id-contract-scfc-scfs OBJECT IDENTIFIER ::=
+ {id-contract scfc-scfs(18)}
+
+id-contract-dssp OBJECT IDENTIFIER ::= {id-contract dssp(19)}
+
+id-contract-scfs-scfc OBJECT IDENTIFIER ::= {id-contract scfs-scfc(25)}
+
+-- CUSF/SCF Contracts
+id-contract-scfcusfDPSpecific OBJECT IDENTIFIER ::=
+ {id-contract scf-cusf-DPSpecific(20)}
+
+id-contract-cusfscfDPSpecific OBJECT IDENTIFIER ::=
+ {id-contract cusf-scf-DPSpecific(21)}
+
+id-contract-scfcusfGeneric OBJECT IDENTIFIER ::=
+ {id-contract scf-cusf-Generic(23)}
+
+id-contract-cusfscfGeneric OBJECT IDENTIFIER ::=
+ {id-contract cusf-scf-Generic(24)}
+
+-- Operation Packages
+id-package-emptyConnection OBJECT IDENTIFIER ::=
+ {id-package emptyConnection(60)}
+
+-- SSF/SCF Operation Packages
+id-package-scfActivation OBJECT IDENTIFIER ::=
+ {id-package scfActivation(11)}
+
+id-package-basicBCPDP OBJECT IDENTIFIER ::= {id-package basicBCPDP(12)}
+
+id-package-advancedBCPDP OBJECT IDENTIFIER ::= {id-package advancedBCPDP(14)}
+
+id-package-srf-scfActivationOfAssist OBJECT IDENTIFIER ::=
+ {id-package srf-scfActivationOfAssist(15)}
+
+id-package-assistConnectionEstablishment OBJECT IDENTIFIER ::=
+ {id-package assistConnectionEstablishment(16)}
+
+id-package-genericDisconnectResource OBJECT IDENTIFIER ::=
+ {id-package genericDisconnectResource(17)}
+
+id-package-nonAssistedConnectionEstablishment OBJECT IDENTIFIER ::=
+ {id-package nonAssistedConnectionEstablishment(18)}
+
+id-package-connect OBJECT IDENTIFIER ::= {id-package connect(19)}
+
+id-package-callHandling OBJECT IDENTIFIER ::= {id-package callHandling(20)}
+
+id-package-bcsmEventHandling OBJECT IDENTIFIER ::=
+ {id-package bcsmEventHandling(21)}
+
+id-package-dpSpecificEventHandling OBJECT IDENTIFIER ::=
+ {id-package dpSpecificEventHandling(22)}
+
+id-package-chargingEventHandling OBJECT IDENTIFIER ::=
+ {id-package chargingEventHandling(23)}
+
+id-package-ssfCallProcessing OBJECT IDENTIFIER ::=
+ {id-package ssfCallProcessing(24)}
+
+id-package-scfCallInitiation OBJECT IDENTIFIER ::=
+ {id-package scfCallInitiation(25)}
+
+id-package-timer OBJECT IDENTIFIER ::= {id-package timer(26)}
+
+id-package-billing OBJECT IDENTIFIER ::= {id-package billing(27)}
+
+id-package-charging OBJECT IDENTIFIER ::= {id-package charging(28)}
+
+id-package-iNTrafficManagement OBJECT IDENTIFIER ::=
+ {id-package iNtrafficManagement(29)}
+
+id-package-serviceManagementActivate OBJECT IDENTIFIER ::=
+ {id-package serviceManagementActivate(30)}
+
+id-package-serviceManagementResponse OBJECT IDENTIFIER ::=
+ {id-package serviceManagementResponse(31)}
+
+id-package-callReport OBJECT IDENTIFIER ::= {id-package callReport(32)}
+
+id-package-signallingControl OBJECT IDENTIFIER ::=
+ {id-package signallingControl(33)}
+
+id-package-activityTest OBJECT IDENTIFIER ::= {id-package activityTest(34)}
+
+id-package-statusReporting OBJECT IDENTIFIER ::=
+ {id-package statusReporting(35)}
+
+id-package-cancel OBJECT IDENTIFIER ::= {id-package cancel(36)}
+
+id-package-cphResponse OBJECT IDENTIFIER ::= {id-package cphResponse(37)}
+
+id-package-entityReleased OBJECT IDENTIFIER ::= {id-package entityReleased(38)}
+
+id-package-triggerManagement OBJECT IDENTIFIER ::=
+ {id-package triggerManagement(39)}
+
+id-package-uSIHandling OBJECT IDENTIFIER ::= {id-package uSIHandling(40)}
+
+id-package-facilityIEHandling OBJECT IDENTIFIER ::=
+ {id-package facilityIEHandling(41)}
+
+id-package-triggerCallManagement OBJECT IDENTIFIER ::=
+ {id-package triggerCallManagement(63)}
+
+id-package-monitorRoute OBJECT IDENTIFIER ::= {id-package monitorRoute(77)}
+
+id-package-trafficManagement OBJECT IDENTIFIER ::=
+ {id-package trafficManagement(78)}
+
+-- SRF/SCF Operation Packages
+id-package-specializedResourceControl OBJECT IDENTIFIER ::=
+ {id-package specializedResourceControl(42)}
+
+id-package-srf-scfCancel OBJECT IDENTIFIER ::= {id-package srf-scfCancel(43)}
+
+id-package-messageControl OBJECT IDENTIFIER ::= {id-package messageControl(44)}
+
+id-package-scriptControl OBJECT IDENTIFIER ::= {id-package scriptControl(45)}
+
+id-package-srfManagement OBJECT IDENTIFIER ::= {id-package srfManagement(66)}
+
+-- SCF-SDF packages
+id-package-search OBJECT IDENTIFIER ::=
+ {id-package search(2)}
+
+id-package-modify OBJECT IDENTIFIER ::= {id-package modify(3)}
+
+id-package-dapConnection OBJECT IDENTIFIER ::= {id-package dapConnection(10)}
+
+id-package-execute OBJECT IDENTIFIER ::= {id-package execute(4)}
+
+id-package-tfcOperations OBJECT IDENTIFIER ::= {id-package tfcOperations(64)}
+
+id-package-tfcConnection OBJECT IDENTIFIER ::= {id-package tfcConnection(65)}
+
+-- SDF-SDF Packages.
+id-package-dspConnection OBJECT IDENTIFIER ::=
+ {id-package dspConnection(47)}
+
+id-package-inchainedModify OBJECT IDENTIFIER ::=
+ {id-package inchainedModify(48)}
+
+id-package-inchainedSearch OBJECT IDENTIFIER ::=
+ {id-package inchainedSearch(49)}
+
+id-package-chainedExecute OBJECT IDENTIFIER ::= {id-package chainedExecute(50)}
+
+id-package-dispConnection OBJECT IDENTIFIER ::= {id-package dispConnection(51)}
+
+id-package-shadowConsumer OBJECT IDENTIFIER ::= {id-package shadowConsumer(52)}
+
+id-package-shadowSupplier OBJECT IDENTIFIER ::= {id-package shadowSupplier(53)}
+
+-- SCF/SCF Operation Packages
+id-package-scf-scfConnection OBJECT IDENTIFIER ::=
+ {id-package scf-scfConnection(46)}
+
+id-package-dsspConnection OBJECT IDENTIFIER ::= {id-package dsspConnection(74)}
+
+id-package-handlingInformation OBJECT IDENTIFIER ::=
+ {id-package handlingInformation(54)}
+
+id-package-notification OBJECT IDENTIFIER ::= {id-package notification(55)}
+
+id-package-chargingInformation OBJECT IDENTIFIER ::=
+ {id-package chargingInformation(56)}
+
+id-package-userInformation OBJECT IDENTIFIER ::=
+ {id-package userInformation(57)}
+
+id-package-networkCapability OBJECT IDENTIFIER ::=
+ {id-package networkCapability(58)}
+
+id-package-chainedSCFOperations OBJECT IDENTIFIER ::=
+ {id-package chainedSCFOperations(59)}
+
+id-package-transferStsi OBJECT IDENTIFIER ::= {id-package transferStsi(75)}
+
+id-package-initiateCall OBJECT IDENTIFIER ::= {id-package initiateCall(76)}
+
+-- CUSF/SCF Operation Packages
+id-package-cusfTDPSpecificInvocation OBJECT IDENTIFIER ::=
+ {id-package cusfTDPSpecificInvocation(61)}
+
+id-package-cusfTDPGenericInvocation OBJECT IDENTIFIER ::=
+ {id-package cusfTDPGenericInvocation(62)}
+
+id-package-cusfDPSpecificEventHandling OBJECT IDENTIFIER ::=
+ {id-package cusfDPSpecificEventHandling(67)}
+
+id-package-cusfGenericEventHandling OBJECT IDENTIFIER ::=
+ {id-package cusfGenericEventHandling(68)}
+
+id-package-cusfComponentHandling OBJECT IDENTIFIER ::=
+ {id-package cusfComponentHandling(69)}
+
+id-package-cusfSCFInitiation OBJECT IDENTIFIER ::=
+ {id-package cusfSCFInitiation(70)}
+
+id-package-cusfContinue OBJECT IDENTIFIER ::= {id-package cusfContinue(71)}
+
+id-package-cusfConnect OBJECT IDENTIFIER ::= {id-package cusfConnect(72)}
+
+id-package-cusfRelease OBJECT IDENTIFIER ::= {id-package cusfRelease(73)}
+
+-- SDF Attribute Value Contexts
+id-avc-assignment OBJECT IDENTIFIER ::=
+ {id-avc assignment(1)}
+
+id-avc-basicService OBJECT IDENTIFIER ::= {id-avc assignment(2)}
+
+id-avc-lineIdentity OBJECT IDENTIFIER ::= {id-avc assignment(3)}
+
+END
+
+-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
+
diff --git a/asn1/inap/Makefile b/asn1/inap/Makefile
index b693fd91b8..5960e481ce 100644
--- a/asn1/inap/Makefile
+++ b/asn1/inap/Makefile
@@ -1,7 +1,13 @@
# $Id$
DISSECTOR_FILES=packet-inap.c packet-inap.h
-ASN_FILE_LIST=inap.asn IN-CS-1-Datatypes.asn IN-CS-1-Datatypes-appendix.asn
+DISSECTOR_FILES=packet-$(PROTOCOL_NAME).c packet-$(PROTOCOL_NAME).h
+ROS_ASN= ../ros/Remote-Operations-Information-Objects.asn
+1248_1_ASN_FILES= IN-object-identifiers.asn IN-common-datatypes.asn
+1248_2_ASN_FILES=IN-SSF-SCF-datatypes.asn IN-SSF-SCF-ops-args.asn
+1248_3_ASN_FILES=IN-SCF-SRF-datatypes.asn IN-SCF-SRF-ops-args.asn
+1248_CLASSES_ASN=IN-common-classes.asn IN-SSF-SCF-Classes.asn IN-SCF-SRF-Classes.asn
+ASN_FILE_LIST=$(ROS_ASN) $(1248_CLASSES_ASN) inap.asn $(1248_1_ASN_FILES) $(1248_2_ASN_FILES) $(1248_3_ASN_FILES)
all: generate_dissector
diff --git a/asn1/inap/Makefile.nmake b/asn1/inap/Makefile.nmake
index 51de8d18be..6981bd3d78 100644
--- a/asn1/inap/Makefile.nmake
+++ b/asn1/inap/Makefile.nmake
@@ -8,7 +8,12 @@ UNIX2DOS=$(PERL) ../../tools/unix2dos.pl
PROTOCOL_NAME=inap
DISSECTOR_FILES=packet-$(PROTOCOL_NAME).c packet-$(PROTOCOL_NAME).h
-ASN_FILE_LIST=inap.asn IN-CS-1-Datatypes.asn IN-CS-1-Datatypes-appendix.asn
+ROS_ASN= ../ros/Remote-Operations-Information-Objects.asn
+1248_1_ASN_FILES= IN-object-identifiers.asn IN-common-datatypes.asn
+1248_2_ASN_FILES=IN-SSF-SCF-datatypes.asn IN-SSF-SCF-ops-args.asn
+1248_3_ASN_FILES=IN-SCF-SRF-datatypes.asn IN-SCF-SRF-ops-args.asn
+1248_CLASSES_ASN=IN-common-classes.asn IN-SSF-SCF-Classes.asn IN-SCF-SRF-Classes.asn
+ASN_FILE_LIST=$(ROS_ASN) $(1248_CLASSES_ASN) inap.asn $(1248_1_ASN_FILES) $(1248_2_ASN_FILES) $(1248_3_ASN_FILES)
all: generate_dissector
diff --git a/asn1/inap/inap.asn b/asn1/inap/inap.asn
index 0b8644abc6..a57dbdaaf0 100644
--- a/asn1/inap/inap.asn
+++ b/asn1/inap/inap.asn
@@ -11,7 +11,7 @@ BEGIN
-- remote-operations-apdus(11)} DEFINITIONS AUTOMATIC TAGS ::=
--BEGIN
-Component ::= CHOICE {
+INAP-Component ::= CHOICE {
invoke [1] IMPLICIT Invoke,
returnResultLast [2] IMPLICIT ReturnResult,
returnError [3] IMPLICIT ReturnError,
@@ -22,7 +22,7 @@ Component ::= CHOICE {
Invoke ::= SEQUENCE {
invokeID InvokeIdType,
linkedID [0] IMPLICIT InvokeIdType OPTIONAL,
- opCode OPERATION,
+ opCode INAP-OPERATION,
invokeparameter InvokeParameter OPTIONAL
}
@@ -35,7 +35,7 @@ InvokeParameter ::= ANY
ReturnResult ::= SEQUENCE {
invokeID InvokeIdType,
resultretres SEQUENCE {
- opCode OPERATION,
+ opCode INAP-OPERATION,
returnparameter ReturnResultParameter OPTIONAL
} OPTIONAL
}
@@ -47,7 +47,7 @@ ReturnResultParameter ::= ANY
ReturnError ::= SEQUENCE {
invokeID InvokeIdType,
- errorCode ERROR,
+ errorCode INAP-ERROR,
parameter ReturnErrorParameter OPTIONAL }
ReturnErrorParameter ::= ANY
@@ -65,9 +65,10 @@ Reject ::= SEQUENCE {
returnResultProblem [2] IMPLICIT ReturnResultProblem,
returnErrorProblem [3] IMPLICIT ReturnErrorProblem } }
+InvokeIdType ::= INTEGER (-128..127)
-OPERATION ::= CHOICE {
+INAP-OPERATION ::= CHOICE {
localValue OperationLocalvalue,
globalValue OBJECT IDENTIFIER }
@@ -75,7 +76,7 @@ LocalErrorcode ::= INAPLocalErrorcode
OperationLocalvalue ::= INAPOperationLocalvalue
INAPLocalErrorcode ::= INTEGER
INAPOperationLocalvalue ::= INTEGER
-ERROR ::= CHOICE {
+INAP-ERROR ::= CHOICE {
localValue LocalErrorcode,
globalValue OBJECT IDENTIFIER }
@@ -104,21 +105,21 @@ ReturnErrorProblem ::= INTEGER { unrecognizedInvokeID (0),
unexpectedError (3),
mistypedParameter (4) }
--- TYPE DEFINITION FOR ADDITIONAL IN CS-1 OPERATIONS
+-- TYPE DEFINITION FOR ADDITIONAL IN CS-1 INAP-OPERATIONS
-- SCF-SSF operations
-- SCF ? SSF
-- This operation is used to release a call party connection during a call between two or more parties.
---LegIDAlreadyAssigned ::= ERROR
+--LegIDAlreadyAssigned ::= INAP-ERROR
-- Indicates that a legID has already been assigned with the requested value.
---TooLate ::= ERROR
+--TooLate ::= INAP-ERROR
-- Indicates that the operation could not be performed in a timely manner.
---UnknownLegID ::= ERROR
+--UnknownLegID ::= INAP-ERROR
-- Indicates that the legID does not exist.
-- TYPE DEFINITION FOR ADDITIONAL IN CS-1 DATA TYPES
-- Argument Data Types
--- OPERATION AND ERROR CODE DEFINITION
+-- INAP-OPERATION AND INAP-ERROR CODE DEFINITION
-- Code point values are for further study. The operations are grouped by the identified ASEs.
-- Call party handling ASE
addParty AddParty ::= ffs
@@ -144,7 +145,7 @@ CancelFailed ::= SEQUENCE {
--ImproperCallerResponse ::= localValue 4
--MissingCustomerRecord ::= localValue 6
--MissingParameter ::= localValue 7
---parameterOutOfRange ERROR
+--parameterOutOfRange INAP-ERROR
--::= localValue 8
RequestedInfoError ::= ENUMERATED {
unknownRequestedInfo (1),
@@ -162,18 +163,18 @@ TaskRefused ::= ENUMERATED {
unobtainable (1),
congestion (2)}
--::= localValue 12
---unavailableResource ERROR
+--unavailableResource INAP-ERROR
-- ::= localValue 13
---unexpectedComponentSequence ERROR
+--unexpectedComponentSequence INAP-ERROR
-- ::= localValue 14
---unexpectedDataValue ERROR
+--unexpectedDataValue INAP-ERROR
-- ::= localValue 15
---unexpectedParameter ERROR
+--unexpectedParameter INAP-ERROR
-- ::= localValue 16
---unknownLegID ERROR
+--unknownLegID INAP-ERROR
-- ::= localValue 17-
---unknownResource ERROR
+--unknownResource INAP-ERROR
-- ::= localValue 18
-
-
+-- Dummy asign problems with CLASS
+ExtensionType ::= OCTET STRING
END \ No newline at end of file
diff --git a/asn1/inap/inap.cnf b/asn1/inap/inap.cnf
index b1be3f6b93..1099490a29 100644
--- a/asn1/inap/inap.cnf
+++ b/asn1/inap/inap.cnf
@@ -1,6 +1,5 @@
# inap.cnf
# inap conformation file
-
# $Id$
#.MODULE_IMPORT
@@ -10,19 +9,34 @@
#.NO_EMIT
#.CLASS EXTENSION
-id TypeReference ExtensionType
-Type
-absent
-criticality TypeReference Criticality
+ExtensionType
+criticality TypeReference Criticality
+id TypeReference Code
+#.END
+#.CLASS COMMON-BOUNDS
+numOfExtensions TypeReference NUM-OF-EXTENSIONS
+#.END
+#.CLASS SCF-SSF-BOUNDS
+highLayerCompatibilityLength
+#.END
+#.CLASS TRIGGER
+Parameter
+id
+#.END
+#.CLASS UISCRIPT
+SpecificInfo
+Result
+id TypeReference Code
#.END
+
#.TYPE_RENAME
#.FIELD_RENAME
#.PDU
-Component
+INAP-Component
InitialDPArg
OriginationAttemptAuthorizedArg
CollectedInformationArg
@@ -74,6 +88,26 @@ CancelArg
RequestCurrentStatusReportResultArg
ReceivedInformationArg
+#.FN_BODY T_triggerId
+ offset = dissect_ber_integer(implicit_tag, actx, tree, tvb, offset, hf_index,
+ NULL);
+#.FN_BODY T_triggerPar
+/* FIX ME */
+#.FN_BODY T_uIScriptSpecificInfo
+/* FIX ME */
+
+#.FN_BODY T_uIScriptResult
+/* FIX ME */
+
+#.FN_BODY T_uIScriptSpecificInfo
+/* FIX ME */
+
+#.FN_BODY T_uIScriptSpecificInfo_01
+/* FIX ME */
+#.FN_BODY T_uIScriptSpecificInfo_02
+/* FIX ME */
+
+
#.FN_BODY T_value
offset = dissect_ber_octet_string(implicit_tag, actx, tree, tvb, offset, hf_index,
NULL);
diff --git a/asn1/inap/packet-inap-template.c b/asn1/inap/packet-inap-template.c
index d8757e1d64..15d2ae9eca 100644
--- a/asn1/inap/packet-inap-template.c
+++ b/asn1/inap/packet-inap-template.c
@@ -408,7 +408,7 @@ dissect_inap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
/* Get the length and add 2 */
inap_pdu_size = tvb_get_guint8(tvb, offset+1)+2;
opcode = 0;
- dissect_Component_PDU(tvb, pinfo, tree);
+ dissect_INAP_Component_PDU(tvb, pinfo, tree);
}