/** * @author ETSI / STF405 * @version $URL$ * $Id$ * @desc Basic Transport Protocol Templates * @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. * */ 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 BtpRawPayload PX_PAYLOAD := '0102030405'O ; } // end LibItsBtp_Pixits