diff --git a/ISUPExtensions.st b/ISUPExtensions.st new file mode 100644 index 0000000..63681e6 --- /dev/null +++ b/ISUPExtensions.st @@ -0,0 +1,32 @@ +" + (C) 2012 by Holger Hans Peter Freyther + All Rights Reserved + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +" + +ISUPNatureOfConnectionIndicators class extend [ + satNoSat [ ^ 2r00 ] + satOneSat [ ^ 2r01 ] + satTwoSat [ ^ 2r10 ] + satSpare [ ^ 2r11 ] + + cciNotRequired [ ^ 2r00 ] + cciRequired [ ^ 2r01 ] + cciPerformed [ ^ 2r10 ] + cciSpare [ ^ 2r11 ] + + ecdiNotIncluded [ ^ 2r0 ] + ecdiIncluded [ ^ 2r1 ] +] diff --git a/package.xml b/package.xml index f7a40ca..b184a4a 100644 --- a/package.xml +++ b/package.xml @@ -8,6 +8,7 @@ MessageStructure.st ISUP.st isup_generated.st + ISUPExtensions.st IPAConstants.st IPADispatcher.st IPAMuxer.st