LibItsBtp_Pixits.ttcn 1.28 KB
Newer Older
fischer's avatar
fischer committed
/**
 *  @author   ETSI / STF405
berge's avatar
berge committed
 *  @version  $URL$
 *            $Id$
fischer's avatar
fischer committed
 *  @desc     Basic Transport Protocol Templates
garciay's avatar
garciay committed
 *  @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.
fischer's avatar
fischer committed
 *
 */
module LibItsBtp_Pixits {
    
    // LibIts
    import from LibItsBtp_TypesAndValues all;
    
fischer's avatar
fischer committed

        /**
         * @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;

fischer's avatar
fischer committed
        /**
         * @desc BTP Unknown Destination port of the IUT
         * 		 
         */
    	modulepar BtpPortId PX_UNKNOWN_DESTINATION_PORT := 0;

fischer's avatar
fischer committed
        /**
         * @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 ;
fischer's avatar
fischer committed

fischer's avatar
fischer committed
    
} // end LibItsBtp_Pixits