Wireshark-commits: [Wireshark-commits] master 62fd14c: Add nghttp2 lib (HPACK)

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Sat, 31 May 2014 13:11:07 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=62fd14cbd713765e24212595f8778164dd5b7b44
Submitter: Michael Mann (mmann78@xxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

62fd14c by Alexis La Goutte (alexis.lagoutte@xxxxxxxxx):

    Add nghttp2 lib (HPACK)
    
    Change-Id: I2a361951924045035a2a5d38f943e6b97c170f36
    Reviewed-on: https://code.wireshark.org/review/1623
    Reviewed-by: Pascal Quantin <pascal.quantin@xxxxxxxxx>
    Reviewed-by: Michael Mann <mmann78@xxxxxxxxxxxx>
    

Actions performed:

    from  5315416   Move cpuid to seperate header file.
    adds  62fd14c   Add nghttp2 lib (HPACK)


Summary of changes:
 configure.ac                                   |    1 +
 wsutil/CMakeLists.txt                          |    5 +
 wsutil/Makefile.am                             |    6 +
 wsutil/Makefile.nmake                          |   22 +-
 {epan/wmem => wsutil/nghttp2}/Makefile.am      |   29 +-
 {epan/crypt => wsutil/nghttp2}/Makefile.common |   45 +-
 wsutil/nghttp2/Makefile.nmake                  |   43 +
 wsutil/nghttp2/README.nghttp2                  |   93 +
 wsutil/nghttp2/nghttp2/nghttp2.h               | 3037 ++++++++++++++
 wsutil/nghttp2/nghttp2/nghttp2ver.h            |   42 +
 wsutil/nghttp2/nghttp2_buf.c                   |  477 +++
 wsutil/nghttp2/nghttp2_buf.h                   |  371 ++
 wsutil/nghttp2/nghttp2_hd.c                    | 2056 ++++++++++
 wsutil/nghttp2/nghttp2_hd.h                    |  353 ++
 wsutil/nghttp2/nghttp2_hd_huffman.c            |  205 +
 wsutil/nghttp2/nghttp2_hd_huffman.h            |   70 +
 wsutil/nghttp2/nghttp2_hd_huffman_data.c       | 5152 ++++++++++++++++++++++++
 wsutil/nghttp2/nghttp2_helper.c                |  409 ++
 wsutil/nghttp2/nghttp2_helper.h                |  135 +
 wsutil/nghttp2/nghttp2_int.h                   |   50 +
 wsutil/nghttp2/nghttp2_net.h                   |   44 +
 21 files changed, 12604 insertions(+), 41 deletions(-)
 copy {epan/wmem => wsutil/nghttp2}/Makefile.am (76%)
 copy {epan/crypt => wsutil/nghttp2}/Makefile.common (64%)
 create mode 100644 wsutil/nghttp2/Makefile.nmake
 create mode 100644 wsutil/nghttp2/README.nghttp2
 create mode 100644 wsutil/nghttp2/nghttp2/nghttp2.h
 create mode 100644 wsutil/nghttp2/nghttp2/nghttp2ver.h
 create mode 100644 wsutil/nghttp2/nghttp2_buf.c
 create mode 100644 wsutil/nghttp2/nghttp2_buf.h
 create mode 100644 wsutil/nghttp2/nghttp2_hd.c
 create mode 100644 wsutil/nghttp2/nghttp2_hd.h
 create mode 100644 wsutil/nghttp2/nghttp2_hd_huffman.c
 create mode 100644 wsutil/nghttp2/nghttp2_hd_huffman.h
 create mode 100644 wsutil/nghttp2/nghttp2_hd_huffman_data.c
 create mode 100644 wsutil/nghttp2/nghttp2_helper.c
 create mode 100644 wsutil/nghttp2/nghttp2_helper.h
 create mode 100644 wsutil/nghttp2/nghttp2_int.h
 create mode 100644 wsutil/nghttp2/nghttp2_net.h