Navigation



Ignore:
Timestamp:
Apr 18, 2020, 9:20:07 AM (4 years ago)
Author:
Luke Mewburn <luke@mewburn.net>
Branch:
default
Phase:
public
Message:

Fix types of 3GPP Max-PLR-DL, Max-PLR-UL

3GPP TS 29.212 table 5.3.0.1 row Max-PLR-DL (2852)
incorrectly lists type as Unsigned32 instead of Float32.
3GPP TS 29.212 clause 5.3.138 uses Float32.
Fix: Max-PLR-DL (2852) type changed from Float32 to Unsigned32.

3GPP TS 29.212 table 5.3.0.1 row Max-PLR-UL (2853)
incorrectly lists type as Unsigned32 instead of Float32.
3GPP TS 29.212 clause 5.3.139 uses Float32.
Fix: Max-PLR-UL (2853) type changed from Float32 to Unsigned32.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/dict_dcca_3gpp/add_avps.c

    r1522 r1523  
    40044004        };
    40054005
    4006         /* Max-PLR-DL, Float32, code 2852, section 5.3.138                  */
     4006        /* Note: 3GPP TS 29.212 table 5.3.0.1 row Max-PLR-DL (2852)         */
     4007        /* incorrectly lists type as Unsigned32 instead of Float32.         */
     4008        /* 3GPP TS 29.212 clause 5.3.138 uses Float32.                      */
     4009        /*                                                                  */
     4010        /* Fix: Max-PLR-DL (2852) type changed from Float32 to Unsigned32.  */
     4011        /* Max-PLR-DL, Unsigned32, code 2852, section 5.3.138               */
    40074012        {
    40084013                struct dict_avp_data data = {
     
    40124017                        AVP_FLAG_VENDOR |AVP_FLAG_MANDATORY,    /* Fixed flags */
    40134018                        AVP_FLAG_VENDOR,        /* Fixed flag values */
    4014                         AVP_TYPE_FLOAT32        /* base type of data */
    4015                 };
    4016                 CHECK_dict_new(DICT_AVP, &data, NULL, NULL);
    4017         };
    4018 
    4019         /* Max-PLR-UL, Float32, code 2853, section 5.3.139                  */
     4019                        AVP_TYPE_UNSIGNED32     /* base type of data */
     4020                };
     4021                CHECK_dict_new(DICT_AVP, &data, NULL, NULL);
     4022        };
     4023
     4024        /* Note: 3GPP TS 29.212 table 5.3.0.1 row Max-PLR-UL (2853)         */
     4025        /* incorrectly lists type as Unsigned32 instead of Float32.         */
     4026        /* 3GPP TS 29.212 clause 5.3.139 uses Float32.                      */
     4027        /*                                                                  */
     4028        /* Fix: Max-PLR-UL (2853) type changed from Float32 to Unsigned32.  */
     4029        /* Max-PLR-UL, Unsigned32, code 2853, section 5.3.139               */
    40204030        {
    40214031                struct dict_avp_data data = {
     
    40254035                        AVP_FLAG_VENDOR |AVP_FLAG_MANDATORY,    /* Fixed flags */
    40264036                        AVP_FLAG_VENDOR,        /* Fixed flag values */
    4027                         AVP_TYPE_FLOAT32        /* base type of data */
     4037                        AVP_TYPE_UNSIGNED32     /* base type of data */
    40284038                };
    40294039                CHECK_dict_new(DICT_AVP, &data, NULL, NULL);
Note: See TracChangeset for help on using the changeset viewer.