LibItsFsap_Pics.ttcn3 2.34 KB
Newer Older
garciay's avatar
garciay committed
/**
 *  @author     ETSI / STF422_EETS
 *  @version    $URL:$
 *              $Id:$
 *  @desc       Fast service advertisement protocol (ISO 24102-5) PICS
 */
module LibItsFsap_Pics {
    
    group fsapPics {
        
        /**
         * @desc Is FSAP Service Provider role ?
         * @see  ETSI TS 102 797-1 v0.0.0 C.1/1
         */
        modulepar boolean PICS_FSAP_ROLE_SP := false;
        
        /**
         * @desc Is FSAP Service User role ?
         * @see  ETSI TS 102 797-1 v0.0.0 C.1/2
         */
        modulepar boolean PICS_FSAP_ROLE_SU := false;
        
        /**
         * @desc Is FSAP Service operation phase ?
         * @see  ETSI TS 102 797-1 v0.0.0 C.2/1
         */
        modulepar boolean PICS_SOP := false;
        
        /**
         * @desc Is supported SIP with support of CTX message mode ?
         * @see  ETSI TS 102 797-1 v0.0.0 C.3/1
         */
        modulepar boolean PICS_SIP_W_CTX := false;
        
        /**
         * @desc Is supported SIP without support of CTX message mode ?
         * @see  ETSI TS 102 797-1 v0.0.0 C.3/2
         */
        modulepar boolean PICS_SIP_N_CTX := false;
        
        // TODO To be continued
        
        /**
         * @desc Is IUT an host only?
         * @see  ETSI TS 102 797-1 v0.0.0 C.5/1
         */
        modulepar boolean PICS_ROLE_RONLY := false;
        
        /**
         * @desc Is IUT a router only?
         * @see  ETSI TS 102 797-1 v0.0.0 C.5/2
         */
        modulepar boolean PICS_ROLE_HONLY := false;
        
        /**
         * @desc Is IUT both host and router?
         * @see  ETSI TS 102 797-1 v0.0.0 C.5/3
         */
        modulepar boolean PICS_ROLE_RH := false;
        
       /**
        * @desc Does the architecture implement ITS station-internal network?
        * @see  ETSI TS 102 797-1 v0.0.0 C.6/1
        */
        modulepar boolean PICS_ITS_S_INW := false;
        
        /**
         * @desc Duration of SAM retransmit timer [ms]
         * @see  TODO
         */
        modulepar integer PICS_SAM_RETRANSMIT_TIMER := 3000;
        
        // FIXME Upgrade Draft ETSI TS 102 797-1 V<0.0.7> (2011-12) documents
        /**
         * @desc Is IISC available?
         * @see  ISO/WD 24102-4
         */
        modulepar boolean PICS_IICP_MGM := true;
        
    } // End of group fsapPics
    
} // End of module LibItsFsap_Pics