Wireshark-commits: [Wireshark-commits] master 0b03543: CBOR: add Concise Binary Object Representati

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Sun, 23 Aug 2015 16:51:25 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=0b03543cbb631ba86e195a5904fb4d337a9f14b4
Submitter: Pascal Quantin (pascal.quantin@xxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

0b03543 by Hauke Mehrtens (hauke@xxxxxxxxxx):

    CBOR: add Concise Binary Object Representation (RFC 7049) dissector
    
    This adds a dissector Concise Binary Object Representation (CBOR) (RFC 7049).
    CBOR is a binary data format designed for implementations with small
    code size as used in the IoT. It uses a structure similar to JSON, but
    encodes the data in binary format. This is used on top of CoAP for
    example.
    
    Change-Id: I9d7b7d4f7609c899bfc68250cdfebd5dc64e0402
    Signed-off-by: Hauke Mehrtens <hauke@xxxxxxxxxx>
    Reviewed-on: https://code.wireshark.org/review/9848
    Reviewed-by: Michael Mann <mmann78@xxxxxxxxxxxx>
    Petri-Dish: Michael Mann <mmann78@xxxxxxxxxxxx>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@xxxxxxxxxxxxx>
    Reviewed-by: Pascal Quantin <pascal.quantin@xxxxxxxxx>
    

Actions performed:

    from  3ce60ed   dtls: do not try to add a zero-length fragment
    adds  0b03543   CBOR: add Concise Binary Object Representation (RFC 7049) dissector


Summary of changes:
 docbook/release-notes.asciidoc  |    1 +
 epan/CMakeLists.txt             |    1 +
 epan/dissectors/Makefile.common |    1 +
 epan/dissectors/packet-cbor.c   |  832 +++++++++++++++++++++++++++++++++++++++
 4 files changed, 835 insertions(+)
 create mode 100644 epan/dissectors/packet-cbor.c