summaryrefslogtreecommitdiffstats
path: root/src/network/access/http2/http2.pri
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2015-12-23 11:41:29 +0100
committerTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-06-15 11:26:45 +0000
commit71f507788baa7c4c9946788f77182ccfd9748bb6 (patch)
tree8d41dbf35710d2e4f862fbec115a64e02d8ae517 /src/network/access/http2/http2.pri
parent88e8c65958fb7c2ec1d7b292e2ce666ede136d92 (diff)
HPACK implementation
Static Huffman coding + HPACK encode/decode algorithm (for HTTP2) + auto test. Change-Id: I85d6269076cc1d586d17c87bcdee49c21522ef78 Task-number: QTBUG-50946 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/network/access/http2/http2.pri')
-rw-r--r--src/network/access/http2/http2.pri11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/network/access/http2/http2.pri b/src/network/access/http2/http2.pri
new file mode 100644
index 0000000000..2157e35e2f
--- /dev/null
+++ b/src/network/access/http2/http2.pri
@@ -0,0 +1,11 @@
+HEADERS += \
+ access/http2/bitstreams_p.h \
+ access/http2/huffman_p.h \
+ access/http2/hpack_p.h \
+ access/http2/hpacktable_p.h
+
+SOURCES += \
+ access/http2/bitstreams.cpp \
+ access/http2/huffman.cpp \
+ access/http2/hpack.cpp \
+ access/http2/hpacktable.cpp