/** * @author ETSI / STF405 * @version $URL$ * $Id$ * @desc Basic Transport Protocol Templates * */ module LibItsBtp_Pixits { // LibIts import from LibItsBtp_TypesAndValues all; /** * @desc BTP source port of the IUT * */ modulepar BtpPortId PX_SOURCE_PORT := 0; /** * @desc BTP Destination port of the IUT * */ modulepar BtpPortId PX_DESTINATION_PORT := 0; /** * @desc BTP Unknown Destination port of the IUT * */ modulepar BtpPortId PX_UNKNOWN_DESTINATION_PORT := 0; /** * @desc BTP Destination port Info of the IUT * */ modulepar BtpPortId PX_DESTINATION_PORT_INFO := 0; /** * @desc Payload to be sent to the IUT for testing matter * */ modulepar BtpPayload PX_PAYLOAD := { decodedPayload := omit, rawPayload := '0102030405'O }; } // end LibItsBtp_Pixits