Wireshark-commits: [Wireshark-commits] master 20971b1: NGAP: New dissector for 3GPP TS 38.413

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Fri, 08 Jun 2018 12:54:29 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=20971b17e12fe9a3ae472c4cb2fda4c3bd47d973
Submitter: Anders Broman (a.broman58@xxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

20971b1 by AndersBroman (anders.broman@xxxxxxxxxxxx):

    NGAP: New dissector for 3GPP TS 38.413
    
    Change-Id: I87019b6f7b8f617128e7636c63bb3f2a49694ee8
    Reviewed-on: https://code.wireshark.org/review/28086
    Petri-Dish: Anders Broman <a.broman58@xxxxxxxxx>
    Tested-by: Petri Dish Buildbot
    Reviewed-by: Anders Broman <a.broman58@xxxxxxxxx>
    

Actions performed:

    from  2b1741e   rpm-setup: add rpmbuild package.
    adds  20971b1   NGAP: New dissector for 3GPP TS 38.413


Summary of changes:
 docbook/release-notes.asciidoc                     |     1 +
 epan/dissectors/CMakeLists.txt                     |     1 +
 epan/dissectors/asn1/CMakeLists.txt                |     1 +
 epan/dissectors/asn1/{h245 => ngap}/CMakeLists.txt |    14 +-
 .../NGAP-CommonDataTypes.asn}                      |     6 +-
 epan/dissectors/asn1/ngap/NGAP-Constants.asn       |   278 +
 .../NGAP-Containers.asn}                           |    93 +-
 epan/dissectors/asn1/ngap/NGAP-IEs.asn             |  2129 +++
 epan/dissectors/asn1/ngap/NGAP-PDU-Contents.asn    |  2378 ++++
 .../dissectors/asn1/ngap/NGAP-PDU-Descriptions.asn |   603 +
 epan/dissectors/asn1/ngap/ngap.cnf                 |   975 ++
 epan/dissectors/asn1/ngap/packet-ngap-template.c   |   469 +
 epan/dissectors/packet-ngap.c                      | 13489 +++++++++++++++++++
 13 files changed, 20381 insertions(+), 56 deletions(-)
 copy epan/dissectors/asn1/{h245 => ngap}/CMakeLists.txt (74%)
 copy epan/dissectors/asn1/{f1ap/F1AP-CommonDataTypes.asn => ngap/NGAP-CommonDataTypes.asn} (85%)
 create mode 100644 epan/dissectors/asn1/ngap/NGAP-Constants.asn
 copy epan/dissectors/asn1/{s1ap/S1AP-Containers.asn => ngap/NGAP-Containers.asn} (60%)
 create mode 100644 epan/dissectors/asn1/ngap/NGAP-IEs.asn
 create mode 100644 epan/dissectors/asn1/ngap/NGAP-PDU-Contents.asn
 create mode 100644 epan/dissectors/asn1/ngap/NGAP-PDU-Descriptions.asn
 create mode 100644 epan/dissectors/asn1/ngap/ngap.cnf
 create mode 100644 epan/dissectors/asn1/ngap/packet-ngap-template.c
 create mode 100644 epan/dissectors/packet-ngap.c