" (C) 2010-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 . " Object subclass: IPAConstants [ IPAConstants class >> protocolRSL [ ^ 16r00 ] IPAConstants class >> protocolMGCP [ ^ 16rFC ] IPAConstants class >> protocolSCCP [ ^ 16rFD ] IPAConstants class >> protocolIPA [ ^ 16rFE ] IPAConstants class >> protocolOML [ ^ 16rFF ] IPAConstants class >> protocolOSMO [ ^ 16rEE ] IPAConstants class >> msgPing [ ^ 16r00 ] IPAConstants class >> msgPong [ ^ 16r01 ] IPAConstants class >> msgIdGet [ ^ 16r04 ] IPAConstants class >> msgIdResp [ ^ 16r05 ] IPAConstants class >> msgIdAck [ ^ 16r06 ] IPAConstants class >> msgSCCP [ ^ 16rFF ] IPAConstants class >> idtagSernr [ ^ 16r00 ] IPAConstants class >> idtagUnitName [ ^ 16r01 ] IPAConstants class >> idtagLocation1 [ ^ 16r02 ] IPAConstants class >> idtagLocation2 [ ^ 16r03 ] IPAConstants class >> idtagEquipVer [ ^ 16r04 ] IPAConstants class >> idtagSwVersion [ ^ 16r05 ] IPAConstants class >> idtagIpaddr [ ^ 16r06 ] IPAConstants class >> idtagMacaddr [ ^ 16r07 ] IPAConstants class >> idtagUnit [ ^ 16r08 ] IPAConstants class >> osmoCtrl [ ^ 16r00 ] IPAConstants class >> osmoMgcp [ ^ 16r01 ] IPAConstants class >> osmoLac [ ^ 16r02 ] IPAConstants class >> protocolOsmoCTRL [ ^ {self protocolOSMO. self osmoCtrl} ] IPAConstants class >> protocolOsmoMGCP [ ^ {self protocolOSMO. self osmoMgcp} ] IPAConstants class >> protocolOsmoLAC [ ^ {self protocolOSMO. self osmoLac} ] ]