• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef QUICHE_HTTP2_ADAPTER_OGHTTP2_UTIL_H_
2 #define QUICHE_HTTP2_ADAPTER_OGHTTP2_UTIL_H_
3 
4 #include "absl/types/span.h"
5 #include "quiche/http2/adapter/http2_protocol.h"
6 #include "quiche/common/platform/api/quiche_export.h"
7 #include "quiche/spdy/core/http2_header_block.h"
8 
9 namespace http2 {
10 namespace adapter {
11 
12 QUICHE_EXPORT spdy::Http2HeaderBlock ToHeaderBlock(
13     absl::Span<const Header> headers);
14 
15 }  // namespace adapter
16 }  // namespace http2
17 
18 #endif  // QUICHE_HTTP2_ADAPTER_OGHTTP2_UTIL_H_
19