summaryrefslogtreecommitdiffstats
path: root/src/network/access/http2/http2.pri
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-01-12 14:45:47 +0100
committerTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-07-08 16:22:32 +0000
commitb2c0f9713c1c39bc3214df49f0d2b44bcc84d790 (patch)
tree6a8eee65f90dd67968fd239606354d49f2202342 /src/network/access/http2/http2.pri
parent6f61cfc33810054173a17443b20bfa2dce737285 (diff)
HTTP2 protocol handler
Add HTTP2 support in QNAM - QHttp2ProtocolHandler + aux. classes. [ChangeLog][QtNetwork] Added support for HTTP/2 protocol Task-number: QTBUG-50956 Change-Id: I3a119cfbb1fb3118d9003225f5e54b46ae2829b6 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'src/network/access/http2/http2.pri')
-rw-r--r--src/network/access/http2/http2.pri10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/network/access/http2/http2.pri b/src/network/access/http2/http2.pri
index 2157e35e2f..e9f30aeb4a 100644
--- a/src/network/access/http2/http2.pri
+++ b/src/network/access/http2/http2.pri
@@ -2,10 +2,16 @@ HEADERS += \
access/http2/bitstreams_p.h \
access/http2/huffman_p.h \
access/http2/hpack_p.h \
- access/http2/hpacktable_p.h
+ access/http2/hpacktable_p.h \
+ access/http2/http2frames_p.h \
+ access/http2/http2streams_p.h \
+ access/http2/http2protocol_p.h
SOURCES += \
access/http2/bitstreams.cpp \
access/http2/huffman.cpp \
access/http2/hpack.cpp \
- access/http2/hpacktable.cpp
+ access/http2/hpacktable.cpp \
+ access/http2/http2frames.cpp \
+ access/http2/http2streams.cpp \
+ access/http2/http2protocol.cpp