You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2020/06/22 01:43:08 UTC

[trafficserver] branch master updated: Make QPACK.h self-contained

This is an automated email from the ASF dual-hosted git repository.

maskit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 763aa8e  Make QPACK.h self-contained
763aa8e is described below

commit 763aa8e14b5717da980bc8ef9746a34c93b63809
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Wed Jun 17 13:47:09 2020 +0900

    Make QPACK.h self-contained
---
 proxy/http3/QPACK.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/proxy/http3/QPACK.h b/proxy/http3/QPACK.h
index feb1068..f8f1889 100644
--- a/proxy/http3/QPACK.h
+++ b/proxy/http3/QPACK.h
@@ -23,11 +23,17 @@
 
 #pragma once
 
+#include <map>
+
 #include "I_EventSystem.h"
 #include "I_Event.h"
+#include "I_IOBuffer.h"
+#include "tscore/Arena.h"
 #include "tscpp/util/IntrusiveDList.h"
 #include "MIME.h"
+#include "HTTP.h"
 #include "QUICApplication.h"
+#include "QUICConnection.h"
 
 class HTTPHdr;