Wireshark-commits: [Wireshark-commits] master 53252df: Support dissecting the TLV data format speci

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Mon, 29 Feb 2016 21:07:22 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=53252df9204629b35ea9fef9b800bfc5bb1bdac6
Submitter: Alexis La Goutte (alexis.lagoutte@xxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

53252df by Christoph Burger-Scheidlin (mail@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx):

    Support dissecting the TLV data format specified for Lwm2m
    
    Lightweight M2M is a protocol on top of CoAP that is used for
    device management. The specification contains a custom payload
    format - a simple type, length, value binary encoding.
    
    This patch adds support for dissecting this payload format.
    While not yet officially registered, the main open source
    implementation of the lwm2m protocol - eclipse's leshan - uses this
    content type 1542 for its messages.
    
    Bug: 12110
    Change-Id: Ib022d1f485c706f1d69ceec7200790448d080965
    Reviewed-on: https://code.wireshark.org/review/13835
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@xxxxxxxxx>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@xxxxxxxxxxxxx>
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@xxxxxxxxx>
    

Actions performed:

    from  8ff3d1b   PIDL: regen pidl-generated dissectors
    adds  53252df   Support dissecting the TLV data format specified for Lwm2m


Summary of changes:
 docbook/release-notes.asciidoc    |    1 +
 epan/CMakeLists.txt               |    1 +
 epan/dissectors/Makefile.common   |    1 +
 epan/dissectors/packet-coap.c     |    1 +
 epan/dissectors/packet-lwm2mtlv.c |  430 +++++++++++++++++++++++++++++++++++++
 5 files changed, 434 insertions(+)
 create mode 100644 epan/dissectors/packet-lwm2mtlv.c