Navigation


Changeset 1226:e59d76289e18 in freeDiameter


Ignore:
Timestamp:
Jul 18, 2013, 1:48:43 AM (11 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Add one AVP from 3GPP 29.210.

Location:
extensions/dict_dcca_3gpp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/dict_dcca_3gpp/dict_dcca_3gpp.c

    r1146 r1226  
    13061306        };
    13071307
     1308        /* 3GPP 29.210-670 (6.7.0 2006-12-18)                           */
     1309        /* PDP-Session-Operation */
     1310        {
     1311                struct dict_avp_data data = {
     1312                        1015,   /* Code */
     1313                        10415,  /* Vendor */
     1314                        "PDP-Session-Operation",        /* Name */
     1315                        AVP_FLAG_VENDOR |AVP_FLAG_MANDATORY,    /* Fixed flags */
     1316                        AVP_FLAG_VENDOR |AVP_FLAG_MANDATORY,    /* Fixed flag values */
     1317                        AVP_TYPE_INTEGER32      /* base type of data */
     1318                };
     1319                struct dict_object              *type;
     1320                struct dict_type_data    tdata = { AVP_TYPE_INTEGER32, "3GPP/Enumerated(PDP-Session-Operation)", NULL, NULL, NULL };
     1321                CHECK_dict_new(DICT_TYPE, &tdata, NULL, &type);
     1322                CHECK_dict_new(DICT_AVP, &data, type, NULL);
     1323        };
     1324
    13081325        /* 3GPP 29.212-c00 (12.0.0 2013.03.15)                          */
    13091326        /* Gx-specific                                                  */
     
    1027810295                CHECK_dict_new(DICT_AVP, &data, NULL, NULL);
    1027910296        };
     10297
    1028010298
    1028110299
  • extensions/dict_dcca_3gpp/dict_dcca_3gpp.org

    r1086 r1226  
    114114| SGSN-Name                                                     | 2409 |          6.4.13 | DiameterIdentity | V    |     |          | M        | N    |
    115115| SGSN-Realm                                                    | 2410 |          6.4.14 | DiameterIdentity | V    |     |          | M        | N    |
     116| # 3GPP 29.210-670 (6.7.0 2006-12-18)                          |      |                 |                  |      |     |          |          |      |
     117| PDP-Session-Operation                                         | 1015 |          5.2.21 | Enumerated       | M,V  | P   |          |          | Y    |
    116118| # 3GPP 29.212-c00 (12.0.0 2013.03.15)                         |      |                 |                  |      |     |          |          |      |
    117119| # Gx-specific                                                 |      |                 |                  |      |     |          |          |      |
Note: See TracChangeset for help on using the changeset viewer.