Commit 41f5a084 authored by berge's avatar berge
Browse files

Fixed address configuration method

parent 3711b0da
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1928,10 +1928,10 @@ module LibItsGeoNetworking_Functions {
        
        /**
         * @desc    Gets the IUT GN local address configuration method
         * @return  TypeOfAddress - IUT's GN local address configuration method
         * @return  GnAddressConfigurationMethod - IUT's GN local address configuration method
         * @see     PICS_GN_LOCAL_ADDR_CONF_METHOD
         */
        function f_getIutGnLocalAddressConfigurationMethod() return TypeOfAddress {
        function f_getIutGnLocalAddressConfigurationMethod() return GnAddressConfigurationMethod {
            return PICS_GN_LOCAL_ADDR_CONF_METHOD;
        }
        
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ module LibItsGeoNetworking_Pics {
         * @desc Is address manually configured
         * @see  ETSI TS 102 871-2 Table 4
         */
        modulepar TypeOfAddress /*FIXME AMB*/   PICS_GN_LOCAL_ADDR_CONF_METHOD := e_manual;
        modulepar GnAddressConfigurationMethod PICS_GN_LOCAL_ADDR_CONF_METHOD := e_auto;
        
        /**
         * @desc Is the IUT mobile?
+9 −0
Original line number Diff line number Diff line
@@ -888,6 +888,15 @@ module LibItsGeoNetworking_TypesAndValues {
            e_advanced(3)
        }
        
        /**
         * @desc GN address configuration method.  
         */
         type enumerated GnAddressConfigurationMethod {
          	e_auto(0),
          	e_managed(1),
          	e_anonymous(2)   
         }
        
    } // end geoNwPicsTypes
    
    group utPrimitives {