]> granicus.if.org Git - esp-idf/commit
components/nghttp: add HTTP2.0 protocol feature
authorliuhan <liuhan@espressif.com>
Tue, 6 Sep 2016 09:24:10 +0000 (17:24 +0800)
committerWu Jian Gang <wujiangang@espressif.com>
Mon, 26 Sep 2016 10:56:20 +0000 (18:56 +0800)
commit3c33350af9505a6ba3444c7a208208ed53c6ba25
tree62cb423ec94bcf650ccf2a623b2b79f42c1ba2d9
parente3ffcd22d533f30550c53023c2c680a1f234f014
components/nghttp: add HTTP2.0 protocol feature

Develop and Issue HTTP2.0 protocol parse function, see nghttp file.
51 files changed:
components/nghttp/COPYING [new file with mode: 0644]
components/nghttp/LICENSE [new file with mode: 0644]
components/nghttp/Makefile [new file with mode: 0644]
components/nghttp/README [new file with mode: 0644]
components/nghttp/include/nghttp2/nghttp2.h [new file with mode: 0644]
components/nghttp/include/nghttp2/nghttp2ver.h [new file with mode: 0644]
components/nghttp/include/nghttp2_buf.h [new file with mode: 0644]
components/nghttp/include/nghttp2_callbacks.h [new file with mode: 0644]
components/nghttp/include/nghttp2_frame.h [new file with mode: 0644]
components/nghttp/include/nghttp2_hd.h [new file with mode: 0644]
components/nghttp/include/nghttp2_hd_huffman.h [new file with mode: 0644]
components/nghttp/include/nghttp2_helper.h [new file with mode: 0644]
components/nghttp/include/nghttp2_http.h [new file with mode: 0644]
components/nghttp/include/nghttp2_int.h [new file with mode: 0644]
components/nghttp/include/nghttp2_map.h [new file with mode: 0644]
components/nghttp/include/nghttp2_mem.h [new file with mode: 0644]
components/nghttp/include/nghttp2_net.h [new file with mode: 0644]
components/nghttp/include/nghttp2_npn.h [new file with mode: 0644]
components/nghttp/include/nghttp2_option.h [new file with mode: 0644]
components/nghttp/include/nghttp2_outbound_item.h [new file with mode: 0644]
components/nghttp/include/nghttp2_pq.h [new file with mode: 0644]
components/nghttp/include/nghttp2_priority_spec.h [new file with mode: 0644]
components/nghttp/include/nghttp2_queue.h [new file with mode: 0644]
components/nghttp/include/nghttp2_rcbuf.h [new file with mode: 0644]
components/nghttp/include/nghttp2_session.h [new file with mode: 0644]
components/nghttp/include/nghttp2_stream.h [new file with mode: 0644]
components/nghttp/include/nghttp2_submit.h [new file with mode: 0644]
components/nghttp/library/nghttp2_buf.c [new file with mode: 0644]
components/nghttp/library/nghttp2_callbacks.c [new file with mode: 0644]
components/nghttp/library/nghttp2_frame.c [new file with mode: 0644]
components/nghttp/library/nghttp2_hd.c [new file with mode: 0644]
components/nghttp/library/nghttp2_hd_huffman.c [new file with mode: 0644]
components/nghttp/library/nghttp2_hd_huffman_data.c [new file with mode: 0644]
components/nghttp/library/nghttp2_helper.c [new file with mode: 0644]
components/nghttp/library/nghttp2_http.c [new file with mode: 0644]
components/nghttp/library/nghttp2_map.c [new file with mode: 0644]
components/nghttp/library/nghttp2_mem.c [new file with mode: 0644]
components/nghttp/library/nghttp2_npn.c [new file with mode: 0644]
components/nghttp/library/nghttp2_option.c [new file with mode: 0644]
components/nghttp/library/nghttp2_outbound_item.c [new file with mode: 0644]
components/nghttp/library/nghttp2_pq.c [new file with mode: 0644]
components/nghttp/library/nghttp2_priority_spec.c [new file with mode: 0644]
components/nghttp/library/nghttp2_queue.c [new file with mode: 0644]
components/nghttp/library/nghttp2_rcbuf.c [new file with mode: 0644]
components/nghttp/library/nghttp2_session.c [new file with mode: 0644]
components/nghttp/library/nghttp2_stream.c [new file with mode: 0644]
components/nghttp/library/nghttp2_submit.c [new file with mode: 0644]
components/nghttp/library/nghttp2_version.c [new file with mode: 0644]
components/nghttp/port/http_parser.c [new file with mode: 0644]
components/nghttp/port/include/config.h [new file with mode: 0644]
components/nghttp/port/include/http_parser.h [new file with mode: 0644]