Navigation


Changeset 1526:dc79c3ae3674 in freeDiameter for extensions


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

Add 3GPP TS 29.153 V15.1.0 (2019-09)

Add AVPs:

  • Network-Congestion-Area-Report, Grouped, code 4101, section 5.3.2
  • Ns-Request-Type, Unsigned32, code 4102, section 5.3.3
Location:
extensions/dict_dcca_3gpp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/dict_dcca_3gpp/add_avps.c

    r1525 r1526  
    19341934                CHECK_dict_new(DICT_TYPE, &tdata, NULL, &type);
    19351935                CHECK_dict_new(DICT_AVP, &data, type, NULL);
     1936        };
     1937
     1938        /*==================================================================*/
     1939        /* 3GPP TS 29.153 V15.1.0 (2019-09)                                 */
     1940        /* Service capability exposure functionality over Ns                */
     1941        /* reference point                                                  */
     1942        /*                                                                  */
     1943        /* From 3GPP 29153-f10.doc                                          */
     1944        /*==================================================================*/
     1945
     1946        /*==================================================================*/
     1947        /* 3GPP TS 29.153 Table 5.3.1.1: Ns specific Diameter AVPs          */
     1948        /*==================================================================*/
     1949
     1950        /* Network-Congestion-Area-Report, Grouped, code 4101, section 5.3.2 */
     1951        {
     1952                struct dict_avp_data data = {
     1953                        4101,   /* Code */
     1954                        10415,  /* Vendor */
     1955                        "Network-Congestion-Area-Report",       /* Name */
     1956                        AVP_FLAG_VENDOR |AVP_FLAG_MANDATORY,    /* Fixed flags */
     1957                        AVP_FLAG_VENDOR |AVP_FLAG_MANDATORY,    /* Fixed flag values */
     1958                        AVP_TYPE_GROUPED        /* base type of data */
     1959                };
     1960                CHECK_dict_new(DICT_AVP, &data, NULL, NULL);
     1961        };
     1962
     1963        /* Ns-Request-Type, Unsigned32, code 4102, section 5.3.3            */
     1964        {
     1965                struct dict_avp_data data = {
     1966                        4102,   /* Code */
     1967                        10415,  /* Vendor */
     1968                        "Ns-Request-Type",      /* Name */
     1969                        AVP_FLAG_VENDOR |AVP_FLAG_MANDATORY,    /* Fixed flags */
     1970                        AVP_FLAG_VENDOR |AVP_FLAG_MANDATORY,    /* Fixed flag values */
     1971                        AVP_TYPE_UNSIGNED32     /* base type of data */
     1972                };
     1973                CHECK_dict_new(DICT_AVP, &data, NULL, NULL);
    19361974        };
    19371975
  • extensions/dict_dcca_3gpp/dict_dcca_3gpp.csv

    r1525 r1526  
    288288Status-Text,1118,6.3.21,UTF8String,"M,V",,,
    289289Routeing-Address-Resolution,1119,6.3.22,Enumerated,"M,V",,,
     290,,,,,,,
     291@standard,3GPP TS 29.153,,,,,,
     292#=,,,,,,,
     293# 3GPP TS 29.153 V15.1.0 (2019-09),,,,,,,
     294# Service capability exposure functionality over Ns,,,,,,,
     295# reference point,,,,,,,
     296# ,,,,,,,
     297# From 3GPP 29153-f10.doc,,,,,,,
     298#=,,,,,,,
     299#,,,,,,,
     300#=,,,,,,,
     301# 3GPP TS 29.153 Table 5.3.1.1: Ns specific Diameter AVPs ,,,,,,,
     302#=,,,,,,,
     303#,,,,,,,
     304Network-Congestion-Area-Report,4101,5.3.2,Grouped,"M,V",P,,
     305Ns-Request-Type,4102,5.3.3,Unsigned32,"M,V",P,,
    290306,,,,,,,
    291307@standard,3GPP TS 29.154,,,,,,
Note: See TracChangeset for help on using the changeset viewer.