aboutsummaryrefslogtreecommitdiffstats
path: root/diameter
AgeCommit message (Collapse)AuthorFilesLines
2021-09-06Diameter: Update Verizon and Cisco AVPs from MR !3731Anders Broman2-0/+140
2021-09-06Diameter: Update some 3GPP AVS to OctetStringOrUTF8Joakim Karlsson1-3/+3
2021-09-05diameter: add 3GPP 29.234 V11.2.0 (2013-06)kor2-32/+124
Added new AVP from 3GPP 29.234
2021-07-05Diameter:Update some AVPs and enums.Anders Broman2-0/+72
2021-06-17Diameter: Add a few AVPsAnders Broman2-1562/+1627
2021-06-03Diameter: Update AVPs from 3GPP TS 29.272 V16.4.0Anders Broman1-0/+54
Amend the xml checking script to exlude one more AVP from the check and make it easy to add more to the list. Courtesy of Christopher Maynard.
2021-04-27DIAMETER: Add two new AVPs discovered in CCA from Huawei OCS on SMS rating.Jeff Dyer1-1/+20
Test: Build and view capture
2020-10-03Update URLs pointing to the bug database.Guy Harris1-1/+1
Switch from bugs.wireshark.org to the GitLab issues list.
2020-09-28Add Metaswitch vendor-specific AVPs for DiameterBen Bass2-0/+86
2020-09-17Diameter make use of OctetStringOrUTF8Anders Broman2-8/+8
Use the new feature rather than coding it
2020-09-16Diameter:Define a new type-name type-name="OctetStringOrUTF8"Anders Broman2-2/+5
Define a bew type name type-name="OctetStringOrUTF8" type-parent="OctetString" to be used with OctetStrings that CAN be strings. This is a Wireshark unique addition to the xml dixtionarys and makes use of BASE_SHOW_ASCII_PRINTABLE.
2020-08-27Diameter: Update AVP RAT-Type enum value.Anders Broman1-0/+1
2020-08-04Added Lawful Intercept Diameter AVPs to the Verizonwireless.xml file.Mike Lugo1-0/+42
Change-Id: Icbc3f5ae8107b427678b044a90b0a90a6427d02a Reviewed-on: https://code.wireshark.org/review/38045 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-29Diameter AVPs: Add 3GPP AVP 4321 and 4325Anders Broman1-0/+6
Bug 16653 Change-Id: I4e67e7060387dc3252b0c6d59471e10393ae9e11 Reviewed-on: https://code.wireshark.org/review/37577 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-02-11Diameter 3GPP: Fix output of AVP 713 Requested-NodesAnders Broman1-5/+2
Change-Id: I0ef23d37c070c262f3be6d5c90d6bef9a41c6b79 Reviewed-on: https://code.wireshark.org/review/36071 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-21Diameter: Fix Location estimate.Anders Broman1-1/+1
- The AVP should be an OctetString - Orientation of major axis should not be multiplied by 2 according to the latest standard. Change-Id: I68532108cc36f4699c10b35ffdbcfaef0c29d9fe Reviewed-on: https://code.wireshark.org/review/35890 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-10-29Diameter: Update AVP and flag dissection.Anders Broman1-2/+33
Change-Id: I982f3ed12613b0dc6a4dfc1ffebebde5b0697c98 Reviewed-on: https://code.wireshark.org/review/34884 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-09-25Diameter: Add AVPs from TS32.299 V16.1.0Anders Broman1-0/+21
Change-Id: I4943aab928f4a0fd8f616f1872ec21e122c28fe9 Reviewed-on: https://code.wireshark.org/review/34615 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-09-24Diameter: Extend an enum.Anders Broman1-0/+1
Change-Id: Ibd04329dc3c962d51ff41abb837f6cbb38ef2000 Reviewed-on: https://code.wireshark.org/review/34608 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-09-24diameter: Fix file permissionsJoão Valverde1-0/+0
Change-Id: Ifc9d847cf7fa37f40d3fd2bac2387c14c72e27c4 Reviewed-on: https://code.wireshark.org/review/34604 Reviewed-by: João Valverde <j@v6e.pt>
2019-09-23Diameter: Update 3gpp AVP RAT-Type and IP-CAN-Type.Anders Broman1-0/+4
Change-Id: I2892ea507d1862bf2aea11a4638429fc5ff348d5 Reviewed-on: https://code.wireshark.org/review/34595 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-08-15Diameter: Add MS-CHAP/MS-CHAPv2 AVP support for EAP-TLSPeter Wu2-0/+34
Created the Microsoft Diameter file based on MS-CHAP-* AVPs listed at https://www.iana.org/assignments/eap-numbers/eap-numbers.xhtml#eap-numbers-10 Many values are displayed as bytes for simplicit. The MS-CHAP2-Success attribute could for example be dissected further as 1 byte followed by a string, but that requires more effort. Allow padding to be missing since the eap-ttls-mschapv2.pcapng capture would throw a Malformed Packet exception otherwise. Bug: 15603 Change-Id: I9efc322a86802e78bb6cd4bc3df1c1282a45fe9e Reviewed-on: https://code.wireshark.org/review/34291 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-08-05Diameter: Update 3GPP AVP 513 Specific-Action.Anders Broman1-0/+1
Change-Id: Iec92482d0358c68fd079a5a701bfcb7f015eb5bf Reviewed-on: https://code.wireshark.org/review/34185 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-06-25New Diameter AVPsakuchekar1-0/+74
Change-Id: Iac06fcc8b8ebde4c0310a8d1b52952277976c2d8 Reviewed-on: https://code.wireshark.org/review/33733 Reviewed-by: Anders Broman <a.broman58@gmail.com> Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2019-06-13Add 2 extra AVPs used in the SCAPv2 communication for charging on Ericsson CCNsPaulThompson1-2/+10
Change-Id: I8c15f8f602d99347473a2f749ff5eaa68c7b0d66 Reviewed-on: https://code.wireshark.org/review/33585 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-06-10Diameter 3GPP: add a few Rx related AVPsPascal Quantin1-0/+9
Change-Id: I6ce7d2a8e624430a99371c0ff173e5e48609c6d1 Reviewed-on: https://code.wireshark.org/review/33549 Petri-Dish: Pascal Quantin <pascal@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2019-06-08New Diameter AVPSakuchekar4-0/+410
Change-Id: Ic7fca037cdf041988bc93f6b4066eb190e3028d0 Reviewed-on: https://code.wireshark.org/review/33461 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-05-15Diameter: Fix copy-paste-oAnders Broman1-1/+1
Change-Id: I0f9e507a86c108be08535eaea34ed4a42d12a30f Reviewed-on: https://code.wireshark.org/review/33204 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-05-15diameter: Added 3GPP AVP "Presence-Reporting-Area-Node"Joakim Karlsson1-1/+15
Change-Id: I32347af7eb9b1b3ebc0dd1bc08c0be345e9305a8 Reviewed-on: https://code.wireshark.org/review/33201 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-05-15diameter: fix for validations scriptJoakim Karlsson1-4/+4
Change-Id: I7cf362ba4c772953be0ed212b8ecb1af0a7fbaa2 Reviewed-on: https://code.wireshark.org/review/33200 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-04-24Added 3GPP TS 29.214 (Rx) AVPsJosip Medved1-0/+31
The following 3GPP AVPs have been added - Sponsoring-Action (542) - Max-Supported-Bandwidth-DL (543) - Max-Supported-Bandwidth-UL (544) - Min-Desired-Bandwidth-DL (545) - Min-Desired-Bandwidth-UL (546) - Service-Authorization-Info (548) - Priority-Sharing-Indicator (550) - AF-Requested-Data (551) - Pre-emption-Control-Info (553) Description of AVPs have been taken from 3GPP TS 29.214 version 14.3.0. Change-Id: I3df5c458f28e1076ddc74bd9d2e32e0c98e14834 Reviewed-on: https://code.wireshark.org/review/32962 Petri-Dish: Anders Broman <a.broman58@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-04-23Diameter: Update 3GPP AVPs from TS 29.172Anders Broman1-24/+152
Change-Id: I4cf31982c58ab7423787e3a474aa8207fe35c0ad Reviewed-on: https://code.wireshark.org/review/32955 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-04-18Diameter: Add 3GPP AVP 1706 and bit decodingAnders Broman1-0/+6
in 1426 Access-Restriction-Data Change-Id: I358ddffa1b395adeaa96494f572471619d8b40a6 Reviewed-on: https://code.wireshark.org/review/32884 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-04-17Diameter: Update AVPs from TS 29.336 v15.6.0Anders Broman1-1/+21
Bug: 15700 Change-Id: Icea7af58eeb1c5586092065d94e9ce37546306e5 Reviewed-on: https://code.wireshark.org/review/32875 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-04-10Diameter: Add 3GPP AVP:s and sub dissection.Anders Broman1-12/+40
Change-Id: I93b7afe9b2a2046204376dfd62cd0b508193c91b Reviewed-on: https://code.wireshark.org/review/32810 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-04-01Diameter: Add 3GPP AVPs and data.Anders Broman1-5/+10
Change-Id: Ie7fcb795e05f45ab6d23b8809a2119a836d13e7c Reviewed-on: https://code.wireshark.org/review/32672 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-01-02Diameter: Add 3GPP avp name="eDRX-Related-RAT" code="1705"Anders Broman1-1/+5
Change-Id: Ib95113f12831eed298c28998e4e6106bb4df8019 Reviewed-on: https://code.wireshark.org/review/31299 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-12-18Added AVPs: Idle-To-Connected-Transition-Count and Connected-Durationdennis.lanov1-0/+7
Change-Id: I4a647e6a6373cdd4fbf9e286e06a9f0b95d27d05 Reviewed-on: https://code.wireshark.org/review/31077 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-12-13diameter: Added Secondary-RAT-TypeJoakim Karlsson1-0/+19
Group RAN-Secondary-RAT-Usage-Report and decoding of Secondary-RAT-Type Change-Id: I33c1a0e21be64b5b5b4b9a4a40e9e718d89c9943 Reviewed-on: https://code.wireshark.org/review/31036 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-12-10Diameter: Sort application id numerically.Anders Broman1-2/+2
Change-Id: I83e80fc2fcdd020556df59badcad4205c0f39c75 Reviewed-on: https://code.wireshark.org/review/30995 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-12-05Diameter: add 3GPP MCPTT-Identifier and MCVideo-Identifier AVPsPascal Quantin1-0/+6
Change-Id: Iabc8d91a149b3dd20cd5ff1cebbeae505a3c55ca Reviewed-on: https://code.wireshark.org/review/30919 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-11-08Diameter: Add AVPs for 3GPP S6cAnders Broman2-90/+130
Change-Id: I8ad0f2d0fa2919b459e65c2241b1e6fa14a9c44a Reviewed-on: https://code.wireshark.org/review/30540 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-10-10Diameter: add a few more AVPs from 3GPP 29.272 v15.5.0Pascal Quantin1-0/+18
Change-Id: Id01c2c79b0923eb469ab03f7cbc7fe9e0be59a3d Reviewed-on: https://code.wireshark.org/review/30112 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-09-28Diameter: add a bunch more AVPs from RFC 5777.Jeff Morriss2-89/+343
Add enough AVPs to get the Diameter XML validating again. Also some whitespace and indentation cleanup. Change-Id: Ibebfc8832d50f6347e371ca4b8c5b81548e061a8 Reviewed-on: https://code.wireshark.org/review/29898 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-09-11Diameter: add ALU AVP 1016Pascal Quantin1-5/+11
Bug: 15129 Change-Id: I10114219841af8fe9789e03dbc29198ed4b5830e Reviewed-on: https://code.wireshark.org/review/29598 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-09-10Diameter: Add ALU AVP 1139 from Ask.AndersBroman1-1/+3
Change-Id: Ia2a72bca2c790fb9ad066608484e99e029830998 Reviewed-on: https://code.wireshark.org/review/29556 Petri-Dish: Anders Broman <a.broman58@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-08-22Diameter: add enum value to Presence-Reporting-Area-Status AVPslavka1-0/+1
Change-Id: Ic06a944642e3b01c8bfa38b427f4d5d615f762e0 Reviewed-on: https://code.wireshark.org/review/29246 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-08-22Diameter: Add Commands and AVPs from 3GPP TS 29.338Anders1-13/+86
Change-Id: I831ccc2aed6b8eff2e9047f84daa8b8034e84a7f Reviewed-on: https://code.wireshark.org/review/29243 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-07-26diameter: Update with some AVPs from TS 29.272Joakim Karlsson1-3/+19
Change-Id: Ia16c113821b3c48d48a193e67ae46c9b025e79aa Reviewed-on: https://code.wireshark.org/review/28858 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-06-19Updating T6aT6b specific DIAMETER AVPs per 29.128 15.3David Bastiani1-0/+10
Change-Id: I35c7f4584696f34fc794bde9c973fe34d099bf14 Reviewed-on: https://code.wireshark.org/review/28338 Reviewed-by: Anders Broman <a.broman58@gmail.com>