LibItsFntp_Pics.ttcn3 1.88 KB
Newer Older
/**
 *  @author     ETSI / STF422_EETS
filatov's avatar
filatov committed
 *  @version    $URL$
 *              $Id$
 *  @desc       FAST networking & transport layer protocol (ISO 29281) PICS
 */
module LibItsFntp_Pics {

    group fntpPics {
        
        /**
         * @desc Does the architecture implement ITS station-internal network?
         * @see  ETSI TS 102 985-1 v0.0.0 B.1/1 & B.1/2
         */
        modulepar boolean PICS_ITS_S_INW := false;
        
        /**
         * @desc Is IUT an host only?
         * @see  ETSI TS 102 985-1 v0.0.0 B.2/1
         */
        modulepar boolean PICS_ROLE_RONLY := false;
        
        /**
         * @desc Is IUT a router only?
         * @see  ETSI TS 102 985-1 v0.0.0 B.2/2
         */
        modulepar boolean PICS_ROLE_HONLY := false;
        
        /**
         * @desc Is IUT both host and router?
         * @see  ETSI TS 102 985-1 v0.0.0 B.2/3
         */
        modulepar boolean PICS_ROLE_RH := true;
        
        /**
         * @desc Is IUT support basic architecture?
         * @see  ETSI TS 102 868-1 v1.1.1 B.3/1
         */
        modulepar boolean PICS_BASIC := true;
        
        /**
         * @desc Is IUT support extended architecture?
         * @see  ETSI TS 102 868-1 v1.1.1 B.3/2
         */
        modulepar boolean PICS_EXT := false;
        
        /**
         * @desc Is IUT support N-hop broadcast?
         * @see  ETSI TS 102 868-1 v1.1.1 B.4/1
         */
        modulepar boolean PICS_NHOPBC := false;
        
        /**
garciay's avatar
garciay committed
         * @desc Is access parameters settings supported?
         * @see  ETSI TS 102 868-1 v1.1.1 B.5/1
         */
        modulepar boolean PICS_CIP := false;
        
        /**
         * @desc Is IUT support 15628 Kernel Emulation?
         * @see  ETSI TS 102 868-1 v1.1.1 B.5/2
         */
        modulepar boolean PICS_15628 := false;
        
    } // End of group fntpPics

} // End of module LibItsFntp_Pics