/** * @author ETSI / TTF033 * @version $URL$ * $Id$ * @desc This module provides PIXITs for NGAP tests. * @copyright ETSI Copyright Notification * No part may be reproduced except as authorized by written permission. * The copyright and the foregoing restriction extend to reproduction in all media. * All rights reserved. * @see ETSI TS */ module NGAP_Pixits { // LibCommon import from LibCommon_BasicTypesAndValues all; import from LibCommon_DataStrings all; // LibNGAP import from NGAP_CommonDataTypes language "ASN.1:1997" all; import from NGAP_IEs language "ASN.1:2002" all; group NGAP_Port_and_addresses { group NGAP_TS_Port_and_addresses { /** @desc * IP address of the test system */ modulepar charstring PX_NGAP_ETS_IPADDR := "1.1.1.10"; /** @desc * Port number of the test system */ modulepar integer PX_NGAP_ETS_PORT := 3868; /** @desc * IP address of the test system */ modulepar charstring PX_NGAP_ETS_IPADDR2 := "1.1.1.13"; /** @desc * Port number of the test system */ modulepar integer PX_NGAP_ETS_PORT2 := 3868; } // End of group NGAP_TS_Port_and_addresses group NGAP_SUT_Port_and_addresses { /** @desc * IP address of the system under test */ modulepar charstring PX_NGAP_SUT_IPADDR := "1.1.2.10"; /** @desc * Port number of the system under test */ modulepar integer PX_NGAP_SUT_PORT := 3868; } // End of group NGAP_SUT_Port_and_addresses{ } // End of group NGAP_Port_and_addresses group NGAP_CommonData { /** * @desc integer for variant selection, * @see ETSI */ modulepar integer PX_VA := 1; /** * @desc Variant for Criticality values */ modulepar Criticality PX_VA_CRITICALITY := reject; /** * @desc integer for timer TNGRELOCOverall, * @see ETSI TS 138 413, chapter 9.6 */ modulepar float PX_TNGRELOCOverall := 10.0; } // End of group NGAP_CommonData } // End of module NGAP_Pixits