wireshark/epan/nghttp2
Alexis La Goutte fc75085cd0 libnghttp2: Update to 0.6.4
Change-Id: Ic8878f818a89ebc1056777a5b0838e8a5b1215d5
Reviewed-on: https://code.wireshark.org/review/4834
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-10-22 02:55:03 +00:00
..
Makefile.am Fix the patch-bzip2 target. 2014-09-16 20:16:26 +00:00
Makefile.common Fix the patch-bzip2 target. 2014-09-16 20:16:26 +00:00
Makefile.nmake Fix the patch-bzip2 target. 2014-09-16 20:16:26 +00:00
README.nghttp2 libnghttp2: Update to 0.6.4 2014-10-22 02:55:03 +00:00
nghttp2.h libnghttp2: Update to 0.6.4 2014-10-22 02:55:03 +00:00
nghttp2_buf.c libnghttp2: Update to 0.6.4 2014-10-22 02:55:03 +00:00
nghttp2_buf.h libnghttp2: Update to 0.6.4 2014-10-22 02:55:03 +00:00
nghttp2_hd.c libnghttp2: Update to 0.6.4 2014-10-22 02:55:03 +00:00
nghttp2_hd.h libnghttp2: Update to 0.6.4 2014-10-22 02:55:03 +00:00
nghttp2_hd_huffman.c
nghttp2_hd_huffman.h
nghttp2_hd_huffman_data.c
nghttp2_helper.c libnghttp2: Update to 0.6.4 2014-10-22 02:55:03 +00:00
nghttp2_helper.h
nghttp2_int.h
nghttp2_net.h
nghttp2ver.h libnghttp2: Update to 0.6.4 2014-10-22 02:55:03 +00:00

README.nghttp2

Code from nghttp2 library ( https://github.com/tatsuhiro-t/nghttp2)
Thanks for Tatsuhiro Tsujikawa for permission to use nghttp2 lib.

Update library from source

download (clone) last release of nghttp2
and in folder epan/nghttp2 copy following file

cp ../../../nghttp2/lib/nghttp2_buf.[ch] .
cp ../../../nghttp2/lib/nghttp2_hd*.[ch] .
cp ../../../nghttp2/lib/nghttp2_helper.[ch] .
cp ../../../nghttp2/lib/nghttp2_int.h .
cp ../../../nghttp2/lib/nghttp2_net.h .
cp ../../../nghttp2/lib/includes/nghttp2/nghttp2.h .
cp ../../../nghttp2/lib/includes/nghttp2/nghttp2ver.h .

Change path to nghttp2.h
find . -name "nghttp2*" -type f -exec sed -i 's/<nghttp2\/nghttp2.h>/<nghttp2.h>/g'  {} \;

Change path to nghttp2ver.h
find . -name "nghttp2*" -type f -exec sed -i 's/<nghttp2\/nghttp2ver.h>/"nghttp2ver.h"/g'  {} \;

Fix c++-compat error and unused-parameter error

in nghttp2/nghttp2_helper.h remove check for CONFIG.H

in nghttp2/nghttp2.h

Add on the top
#include "config.h"