Commit d1a15d75 authored by schmitting's avatar schmitting
Browse files

Group 303/4/5/6 finsihed

parent 05eb8b30
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -41,28 +41,32 @@ module SipIsup_PIXITS {
	 *          ISUP: High layer compatibility information element within ATP or UTSI parameter and 
	 *          SIP: PSTN XML HighLayerCompatibility
	 *          Used in TC_105_012, TC_105_013, TC_106_006, TC_106_007, TC_107_008, TC_107_009,
	 *          TC_301_031, TC_301_032 and TC_301_033
	 *          TC_301_031, TC_301_032 and TC_301_033, TC_304_011, TC_304_012, TC_305_004, 
	 *          TC_305_007, TC_306_005 and TC_306_008
	*/
	Bit7 PX_HighLayerCharacteristicsIdentification:='0000001'B;

    /** @desc	Bitstring[7] for 2nd High layer characteristics identification used for mapping between 
     *          ISUP: High layer compatibility information element within ATP parameter and 
     *          SIP: PSTN XML HighLayerCompatibility
     *          Used in TC104_015, TC_104_016 and TC_301_033 
     *          Used in TC104_015, TC_104_016, TC_301_033, TC_305_004, TC_305_007, TC_306_005 
     *          and TC_306_008
    */
    Bit7 PX_HighLayerCharacteristicsIdentification2:='0000001'B;
 
 	/** @desc	Bitstring[5] for Low layer Information Transfer Capability used for mapping between 
	 *          ISUP: Low layer compatibility information element within ATP parameter and 
	 *          SIP: PSTN XML LowLayerCompatibility
	 *          Used in TC_104_018, TC_104_019, TC_106_008, TC_107_010 and TC_301_030
	 *          Used in TC_104_018, TC_104_019, TC_106_008, TC_107_010, TC_301_030, TC_305_003 and
	 *          TC_306_004
	*/
	Bit5 PX_LowLayerInformationTransferCapability:='00000'B;

	/** @desc	Bitstring[7] for Progress description used for mapping between 
	 *          ISUP: Progress indicator information element within ATP parameter and 
	 *          SIP: PSTN XML ProgressIndicator
	 *          Used in TC_104_008, TC_104_020, TC_105_006, TC_107_004 and TC_301_029
	 *          Used in TC_104_008, TC_104_020, TC_105_006, TC_107_004, TC_301_029, TC_305_002 and
	 *          TC_306_003
	*/

	Bit7 PX_ProgressIndicator:='0000001'B;
+3 −0
Original line number Diff line number Diff line
@@ -16,6 +16,9 @@ group Constants {
/* Value 'Connected' of bit field element 'action indicator' in IE 'Action indicator'. */
const Bit1 c_AI_actInd_conn := '0'B;

/* Value 'set-up generated' of bit field element 'Access delivery indicator' in IE 'Access delivery information'. */
const Bit1 c_ADI_setup_generated := '0'B;

/* Value 'no indication' of bit field element 'Called party's category indicator' in IE 'Backward call Indicators'. */
const Bit2 c_BCI_cldPcatInd_noInd := '00'B;

+201 −149

File changed.

Preview size limit exceeded, changes collapsed.

+376 −294

File changed.

Preview size limit exceeded, changes collapsed.

+4 −4
Original line number Diff line number Diff line
@@ -318,10 +318,10 @@ group SipIsup_ISUP_Receive_Msgs
			 TAck.stop;
		   };
		[PX_ISUP_Isup] IsupBiccP.receive
			 (mw_ISUP_MSG_ind(v_CircuitIdentityCode1, { cPG_MSG := mw_CPG_MSG_Def}, v_SLS))
			 (mw_ISUP_MSG_ind(v_CircuitIdentityCode1, { cPG_MSG := mw_CPG_EIF(?)}, v_SLS))
		     {repeat;};	     
		[not PX_ISUP_Isup] IsupBiccP.receive
			 (mw_BICC_MSG_ind(v_CallInstanceCode1, { cPG_MSG := mw_CPG_MSG_Def}))
			 (mw_BICC_MSG_ind(v_CallInstanceCode1, { cPG_MSG := mw_CPG_EIF(?)}))
			 {repeat;};
	  }
	}
@@ -346,10 +346,10 @@ group SipIsup_ISUP_Receive_Msgs
			 TAck.stop;
		   };
		[PX_ISUP_Isup] IsupBiccP.receive
			 (mw_ISUP_MSG_ind(v_CircuitIdentityCode2, { cPG_MSG := mw_CPG_MSG_Def}, v_SLS))
			 (mw_ISUP_MSG_ind(v_CircuitIdentityCode2, { cPG_MSG := mw_CPG_EIF(?)}, v_SLS))
			 {repeat;};	     
		[not PX_ISUP_Isup] IsupBiccP.receive
			 (mw_BICC_MSG_ind(v_CallInstanceCode2, { cPG_MSG := mw_CPG_MSG_Def}))
			 (mw_BICC_MSG_ind(v_CallInstanceCode2, { cPG_MSG := mw_CPG_EIF(?)}))
			 {repeat;};
	  }
	}
Loading