@fails-components/webtransport 0.3.1 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (162) hide show
  1. package/lib/client.js +81 -40
  2. package/lib/dom.ts +7 -5
  3. package/lib/http2/browser/browser.js +168 -0
  4. package/lib/http2/browser/browserparser.js +248 -0
  5. package/lib/http2/flowcontroller.js +371 -0
  6. package/lib/http2/node/capsuleparser.js +291 -0
  7. package/lib/http2/node/client.js +239 -0
  8. package/lib/http2/node/index.js +2 -0
  9. package/lib/http2/node/server.js +499 -0
  10. package/lib/http2/node/websocketparser.js +829 -0
  11. package/lib/http2/parserbase.js +139 -0
  12. package/lib/http2/parserbasehttp2.js +128 -0
  13. package/lib/http2/session.js +225 -0
  14. package/lib/http2/stream.js +354 -0
  15. package/lib/http2/websocketcommon.js +1 -0
  16. package/lib/{index.js → index.browser.js} +6 -10
  17. package/lib/index.node.js +27 -0
  18. package/lib/server.js +252 -69
  19. package/lib/session.js +31 -68
  20. package/lib/stream.js +103 -179
  21. package/lib/types.ts +174 -87
  22. package/lib/utils.js +2 -1
  23. package/lib/webstreams.browser.js +6 -0
  24. package/lib/webstreams.js +7 -0
  25. package/lib/webtransport.browser.js +284 -0
  26. package/lib/webtransport.node.js +137 -0
  27. package/lib/{webtransport.js → webtransportbase.js} +47 -41
  28. package/old_test/test.js +31 -29
  29. package/old_test/testsuite.js +1 -1
  30. package/package.json +18 -17
  31. package/readme.md +94 -30
  32. package/test/bidirectional-streams.spec.js +51 -9
  33. package/test/datagrams.spec.js +8 -2
  34. package/test/fixtures/known-bytes.js +29 -0
  35. package/test/fixtures/read-stream.js +1 -1
  36. package/test/fixtures/reader-value.js +1 -1
  37. package/test/fixtures/server.js +24 -10
  38. package/test/fixtures/webtransport.browser.js +20 -2
  39. package/test/fixtures/webtransport.js +1 -1
  40. package/test/index.js +33 -6
  41. package/test/pw-no-https-errors.json +5 -0
  42. package/test/session.spec.js +71 -52
  43. package/test/unidirectional-streams.spec.js +20 -4
  44. package/CMakeLists.txt +0 -991
  45. package/LICENSE.chromium +0 -27
  46. package/LICENSE.envoy +0 -207
  47. package/build.js +0 -313
  48. package/dist/lib/client.d.ts +0 -78
  49. package/dist/lib/client.d.ts.map +0 -1
  50. package/dist/lib/dom.d.ts +0 -87
  51. package/dist/lib/dom.d.ts.map +0 -1
  52. package/dist/lib/error.d.ts +0 -8
  53. package/dist/lib/error.d.ts.map +0 -1
  54. package/dist/lib/event-loop.d.ts +0 -33
  55. package/dist/lib/event-loop.d.ts.map +0 -1
  56. package/dist/lib/index.d.ts +0 -79
  57. package/dist/lib/index.d.ts.map +0 -1
  58. package/dist/lib/native.d.ts +0 -2
  59. package/dist/lib/native.d.ts.map +0 -1
  60. package/dist/lib/server.d.ts +0 -92
  61. package/dist/lib/server.d.ts.map +0 -1
  62. package/dist/lib/session.d.ts +0 -298
  63. package/dist/lib/session.d.ts.map +0 -1
  64. package/dist/lib/stream.d.ts +0 -135
  65. package/dist/lib/stream.d.ts.map +0 -1
  66. package/dist/lib/transport.d.ts +0 -34
  67. package/dist/lib/transport.d.ts.map +0 -1
  68. package/dist/lib/types.d.ts +0 -212
  69. package/dist/lib/types.d.ts.map +0 -1
  70. package/dist/lib/utils.d.ts +0 -11
  71. package/dist/lib/utils.d.ts.map +0 -1
  72. package/dist/lib/webtransport.d.ts +0 -47
  73. package/dist/lib/webtransport.d.ts.map +0 -1
  74. package/dist/test/bidirectional-streams.spec.d.ts +0 -5
  75. package/dist/test/bidirectional-streams.spec.d.ts.map +0 -1
  76. package/dist/test/datagrams.spec.d.ts +0 -5
  77. package/dist/test/datagrams.spec.d.ts.map +0 -1
  78. package/dist/test/event-loop.node.d.ts +0 -2
  79. package/dist/test/event-loop.node.d.ts.map +0 -1
  80. package/dist/test/fixtures/certificate.d.ts +0 -21
  81. package/dist/test/fixtures/certificate.d.ts.map +0 -1
  82. package/dist/test/fixtures/chai.d.ts +0 -2
  83. package/dist/test/fixtures/chai.d.ts.map +0 -1
  84. package/dist/test/fixtures/known-bytes.d.ts +0 -6
  85. package/dist/test/fixtures/known-bytes.d.ts.map +0 -1
  86. package/dist/test/fixtures/p-timeout.d.ts +0 -8
  87. package/dist/test/fixtures/p-timeout.d.ts.map +0 -1
  88. package/dist/test/fixtures/read-cert-hash.d.ts +0 -6
  89. package/dist/test/fixtures/read-cert-hash.d.ts.map +0 -1
  90. package/dist/test/fixtures/read-stream.d.ts +0 -19
  91. package/dist/test/fixtures/read-stream.d.ts.map +0 -1
  92. package/dist/test/fixtures/reader-value.d.ts +0 -22
  93. package/dist/test/fixtures/reader-value.d.ts.map +0 -1
  94. package/dist/test/fixtures/server.d.ts +0 -5
  95. package/dist/test/fixtures/server.d.ts.map +0 -1
  96. package/dist/test/fixtures/webtransport.browser.d.ts +0 -3
  97. package/dist/test/fixtures/webtransport.browser.d.ts.map +0 -1
  98. package/dist/test/fixtures/webtransport.d.ts +0 -3
  99. package/dist/test/fixtures/webtransport.d.ts.map +0 -1
  100. package/dist/test/fixtures/write-stream.d.ts +0 -10
  101. package/dist/test/fixtures/write-stream.d.ts.map +0 -1
  102. package/dist/test/index.d.ts +0 -2
  103. package/dist/test/index.d.ts.map +0 -1
  104. package/dist/test/session.spec.d.ts +0 -5
  105. package/dist/test/session.spec.d.ts.map +0 -1
  106. package/dist/test/unidirectional-streams.spec.d.ts +0 -2
  107. package/dist/test/unidirectional-streams.spec.d.ts.map +0 -1
  108. package/failslogolicensereadme.txt +0 -4
  109. package/lib/event-loop.js +0 -88
  110. package/lib/native.js +0 -28
  111. package/lib/transport.js +0 -82
  112. package/platform/icufix/fakedata.cpp +0 -8
  113. package/platform/quiche/quic/core/io/socket_win.inc +0 -3
  114. package/platform/quiche_platform_impl/quiche_bug_tracker_impl.h +0 -7
  115. package/platform/quiche_platform_impl/quiche_client_stats_impl.h +0 -7
  116. package/platform/quiche_platform_impl/quiche_command_line_flags_impl.h +0 -7
  117. package/platform/quiche_platform_impl/quiche_containers_impl.h +0 -7
  118. package/platform/quiche_platform_impl/quiche_event_loop_impl.h +0 -7
  119. package/platform/quiche_platform_impl/quiche_export_impl.h +0 -6
  120. package/platform/quiche_platform_impl/quiche_flag_utils_impl.h +0 -11
  121. package/platform/quiche_platform_impl/quiche_flags_impl.h +0 -8
  122. package/platform/quiche_platform_impl/quiche_iovec_impl.h +0 -10
  123. package/platform/quiche_platform_impl/quiche_logging_impl.h +0 -21
  124. package/platform/quiche_platform_impl/quiche_mem_slice_impl.h +0 -2
  125. package/platform/quiche_platform_impl/quiche_mutex_impl.h +0 -8
  126. package/platform/quiche_platform_impl/quiche_prefetch_impl.h +0 -11
  127. package/platform/quiche_platform_impl/quiche_reference_counted_impl.h +0 -16
  128. package/platform/quiche_platform_impl/quiche_server_stats_impl.h +0 -7
  129. package/platform/quiche_platform_impl/quiche_stack_trace_impl.h +0 -12
  130. package/platform/quiche_platform_impl/quiche_stream_buffer_allocator_impl.h +0 -8
  131. package/platform/quiche_platform_impl/quiche_testvalue_impl.h +0 -1
  132. package/platform/quiche_platform_impl/quiche_thread_local_impl.h +0 -6
  133. package/platform/quiche_platform_impl/quiche_time_utils_impl.h +0 -13
  134. package/platform/quiche_platform_impl/quiche_udp_socket_platform_impl.h +0 -39
  135. package/src/http3backendresponse.cc +0 -36
  136. package/src/http3backendresponse.h +0 -109
  137. package/src/http3client.cc +0 -1529
  138. package/src/http3client.h +0 -557
  139. package/src/http3clientsession.cc +0 -65
  140. package/src/http3clientsession.h +0 -60
  141. package/src/http3clientstream.cc +0 -52
  142. package/src/http3clientstream.h +0 -42
  143. package/src/http3dispatcher.cc +0 -62
  144. package/src/http3dispatcher.h +0 -57
  145. package/src/http3eventloop.cc +0 -1107
  146. package/src/http3eventloop.h +0 -316
  147. package/src/http3server.cc +0 -514
  148. package/src/http3server.h +0 -151
  149. package/src/http3serverbackend.cc +0 -105
  150. package/src/http3serverbackend.h +0 -98
  151. package/src/http3serversession.cc +0 -123
  152. package/src/http3serversession.h +0 -95
  153. package/src/http3serverstream.cc +0 -463
  154. package/src/http3serverstream.h +0 -114
  155. package/src/http3sessioncache.cc +0 -85
  156. package/src/http3sessioncache.h +0 -59
  157. package/src/http3wtsessionvisitor.cc +0 -46
  158. package/src/http3wtsessionvisitor.h +0 -397
  159. package/src/http3wtstreamvisitor.cc +0 -155
  160. package/src/http3wtstreamvisitor.h +0 -404
  161. package/test/event-loop.node.js +0 -24
  162. package/tsconfig.json +0 -39
package/CMakeLists.txt DELETED
@@ -1,991 +0,0 @@
1
- cmake_minimum_required(VERSION 3.18)
2
-
3
- cmake_policy(SET CMP0091 NEW)
4
-
5
- #IF (MSVC)
6
- set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
7
- add_definitions(-D_ITERATOR_DEBUG_LEVEL=0)
8
- set(protobuf_MSVC_STATIC_RUNTIME ON)
9
- #ENDIF(MSVC)
10
-
11
- project (webtransport)
12
-
13
-
14
- set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
15
- set(CMAKE_CXX_STANDARD 17)
16
-
17
- set(BUILD_TESTING OFF)
18
-
19
- set(protobuf_BUILD_PROTOC_BINARIES ON)
20
-
21
-
22
-
23
-
24
- IF (WIN32)
25
- add_compile_definitions(NOMINMAX)
26
- ENDIF(WIN32)
27
-
28
- set(ABSL_PROPAGATE_CXX_STD ON)
29
- # include abseil
30
- add_subdirectory(third_party/abseil-cpp EXCLUDE_FROM_ALL)
31
-
32
-
33
- # include libevent
34
- SET(EVENT__DISABLE_OPENSSL ON CACHE BOOL "Define if libevent should build without support for OpenSSL encryption")
35
- add_subdirectory(third_party/libevent EXCLUDE_FROM_ALL)
36
-
37
- # include protobuf
38
- SET(protobuf_WITH_ZLIB OFF CACHE BOOL "Build with zlib support")
39
- SET(protobuf_BUILD_TESTS OFF CACHE BOOL "Build tests")
40
- add_subdirectory(third_party/protobuf EXCLUDE_FROM_ALL)
41
- IF(APPLE)
42
- set_target_properties(protoc libprotoc libprotobuf PROPERTIES OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "Build architectures for Mac OS X" FORCE )
43
- ENDIF(APPLE)
44
-
45
- IF (WIN32)
46
- add_compile_definitions(WIN32_LEAN_AND_MEAN NOGDI)
47
- ENDIF(WIN32)
48
-
49
- # include boring ssl
50
- add_subdirectory(third_party/boringssl/src EXCLUDE_FROM_ALL)
51
-
52
- #IF(MSVC)
53
- # set(CMAKE_CXX_STANDARD 17)
54
- #ENDIF(MSVC)
55
-
56
- # include zlib
57
- add_subdirectory(third_party/zlib EXCLUDE_FROM_ALL)
58
-
59
-
60
- if(COMMAND cmake_policy)
61
- cmake_policy(SET CMP0003 NEW)
62
- endif(COMMAND cmake_policy)
63
-
64
- # google quiche build parameters start, inspired by chromium build
65
-
66
-
67
-
68
- #protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS
69
- #third_party/quiche/quiche/quic/core/proto/cached_network_parameters.proto
70
- #third_party/quiche/quiche/quic/core/proto/crypto_server_config.proto
71
- #third_party/quiche/quiche/quic/core/proto/source_address_token.proto)
72
-
73
-
74
-
75
- add_compile_definitions(QUICHE_ENABLE_LIBEVENT)
76
-
77
-
78
- IF( NOT (WIN32 OR APPLE))
79
- find_package(ICU COMPONENTS uc i18n REQUIRED)
80
- ENDIF(NOT (WIN32 OR APPLE))
81
-
82
- add_library(gquiche STATIC
83
- #plattform impl
84
- platform/quiche_platform_impl/quiche_export_impl.h
85
- platform/quiche_platform_impl/quiche_logging_impl.h
86
- platform/quiche_platform_impl/quiche_containers_impl.h
87
- platform/quiche_platform_impl/quiche_client_stats_impl.h
88
- platform/quiche_platform_impl/quiche_event_loop_impl.h
89
- platform/quiche_platform_impl/quiche_bug_tracker_impl.h
90
- platform/quiche_platform_impl/quiche_iovec_impl.h
91
- platform/quiche_platform_impl/quiche_mutex_impl.h
92
- platform/quiche_platform_impl/quiche_stack_trace_impl.h
93
- platform/quiche_platform_impl/quiche_stream_buffer_allocator_impl.h
94
- platform/quiche_platform_impl/quiche_time_utils_impl.h
95
- platform/quiche_platform_impl/quiche_udp_socket_platform_impl.h
96
- platform/quiche_platform_impl/quiche_prefetch_impl.h
97
- platform/quiche_platform_impl/quiche_server_stats_impl.h
98
- platform/quiche_platform_impl/quiche_mem_slice_impl.h
99
- platform/quiche_platform_impl/quiche_flag_utils_impl.h
100
- #protofiles
101
- #${PROTO_SRCS}
102
- #${CMAKE_CURRENT_BINARY_DIR}/third_party/quiche/quiche/quic/core/proto/cached_network_parameters.pb.h
103
- #${CMAKE_CURRENT_BINARY_DIR}/third_party/quiche/quiche/quic/core/proto/crypto_server_config.pb.h
104
- #${CMAKE_CURRENT_BINARY_DIR}/third_party/quiche/quiche/quic/core/proto/source_address_token.pb.h
105
- #${CMAKE_CURRENT_BINARY_DIR}/third_party/quiche/quiche/quic/core/proto/cached_network_parameters.pb.cc
106
- #${CMAKE_CURRENT_BINARY_DIR}/third_party/quiche/quiche/quic/core/proto/crypto_server_config.pb.cc
107
- #${CMAKE_CURRENT_BINARY_DIR}/third_party/quiche/quiche/quic/core/proto/source_address_token.pb.cc
108
- # url file
109
- third_party/googleurl/base/debug/crash_logging.cc
110
- third_party/googleurl/base/debug/crash_logging.h
111
- third_party/googleurl/base/strings/string_util_constants.cc
112
- third_party/googleurl/base/strings/string_util.cc
113
- third_party/googleurl/base/strings/string_util.h
114
- third_party/googleurl/base/strings/utf_string_conversions.cc
115
- third_party/googleurl/base/strings/utf_string_conversions.h
116
- #third_party/googleurl/base/strings/utf_ostream_operators.cc
117
- #third_party/googleurl/base/strings/utf_ostream_operators.h
118
- third_party/googleurl/url/url_canon.cc
119
- third_party/googleurl/url/url_canon_internal.cc
120
- third_party/googleurl/url/url_canon_path.cc
121
- third_party/googleurl/url/url_canon_query.cc
122
- third_party/googleurl/url/url_canon_stdstring.cc
123
- third_party/googleurl/url/url_canon_stdurl.cc
124
- third_party/googleurl/url/url_canon_filesystemurl.cc
125
- third_party/googleurl/url/third_party/mozilla/url_parse.h
126
- third_party/googleurl/url/url_canon.h
127
- third_party/googleurl/url/url_canon_etc.cc
128
- third_party/googleurl/url/url_canon_fileurl.cc
129
- third_party/googleurl/url/url_canon_internal.h
130
- third_party/googleurl/url/url_canon_mailtourl.cc
131
- third_party/googleurl/url/url_canon_pathurl.cc
132
- third_party/googleurl/url/url_canon_path.cc
133
- third_party/googleurl/url/url_canon_relative.cc
134
- third_party/googleurl/url/url_canon_stdstring.h
135
- third_party/googleurl/url/url_parse_internal.h
136
- third_party/googleurl/url/url_parse_file.cc
137
- third_party/googleurl/url/url_canon_host.cc
138
- third_party/googleurl/url/url_canon_ip.cc
139
- third_party/googleurl/url/url_constants.cc
140
- third_party/googleurl/url/url_features.cc
141
- third_party/googleurl/url/url_features.h
142
- third_party/googleurl/url/url_util.cc
143
- third_party/googleurl/url/url_util.h
144
- third_party/googleurl/url/gurl.cc
145
- third_party/googleurl/url/gurl.h
146
- third_party/googleurl/url/third_party/mozilla/url_parse.cc
147
- third_party/googleurl/url/third_party/mozilla/url_parse.h
148
- third_party/googleurl/base/strings/utf_string_conversion_utils.cc
149
- third_party/googleurl/base/strings/utf_string_conversion_utils.h
150
- third_party/googleurl/build/buildflag.h
151
- third_party/googleurl/build/build_config.h
152
- # normal files
153
- third_party/quiche/quiche/common/capsule.cc
154
- third_party/quiche/quiche/common/capsule.h
155
- third_party/quiche/quiche/common/platform/api/quiche_bug_tracker.h
156
- third_party/quiche/quiche/common/platform/api/quiche_export.h
157
- third_party/quiche/quiche/common/platform/api/quiche_flag_utils.h
158
- third_party/quiche/quiche/common/platform/api/quiche_flags.h
159
- third_party/quiche/quiche/common/platform/api/quiche_hostname_utils.cc
160
- third_party/quiche/quiche/common/platform/api/quiche_hostname_utils.h
161
- third_party/quiche/quiche/common/platform/api/quiche_iovec.h
162
- third_party/quiche/quiche/common/platform/api/quiche_logging.h
163
- third_party/quiche/quiche/common/platform/api/quiche_mem_slice.h
164
- third_party/quiche/quiche/common/platform/api/quiche_mutex.cc
165
- third_party/quiche/quiche/common/platform/api/quiche_mutex.h
166
- third_party/quiche/quiche/common/platform/api/quiche_prefetch.h
167
- third_party/quiche/quiche/common/platform/api/quiche_reference_counted.h
168
- third_party/quiche/quiche/common/platform/api/quiche_time_utils.h
169
- third_party/quiche/quiche/common/platform/api/quiche_url_utils.h
170
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_command_line_flags_impl.cc
171
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_command_line_flags_impl.h
172
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_flag_utils_impl.h
173
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_flags_impl.h
174
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_flags_impl.cc
175
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_prefetch_impl.h
176
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_logging_impl.cc
177
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_logging_impl.h
178
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_mutex_impl.cc
179
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_mutex_impl.h
180
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_stack_trace_impl.cc
181
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_stack_trace_impl.h
182
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_iovec_impl.h
183
- third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_time_utils_impl.cc
184
- third_party/quiche/quiche/common/print_elements.h
185
- third_party/quiche/quiche/common/quiche_buffer_allocator.cc
186
- third_party/quiche/quiche/common/quiche_buffer_allocator.h
187
- third_party/quiche/quiche/common/quiche_crypto_logging.cc
188
- third_party/quiche/quiche/common/quiche_crypto_logging.h
189
- third_party/quiche/quiche/common/quiche_circular_deque.h
190
- third_party/quiche/quiche/common/quiche_data_reader.cc
191
- third_party/quiche/quiche/common/quiche_data_reader.h
192
- third_party/quiche/quiche/common/quiche_data_writer.cc
193
- third_party/quiche/quiche/common/quiche_data_writer.h
194
- third_party/quiche/quiche/common/quiche_endian.h
195
- third_party/quiche/quiche/common/quiche_ip_address.cc
196
- third_party/quiche/quiche/common/quiche_ip_address.h
197
- third_party/quiche/quiche/common/quiche_ip_address_family.cc
198
- third_party/quiche/quiche/common/quiche_ip_address_family.h
199
- third_party/quiche/quiche/common/quiche_linked_hash_map.h
200
- third_party/quiche/quiche/common/quiche_mem_slice_storage.h
201
- third_party/quiche/quiche/common/quiche_mem_slice_storage.cc
202
- third_party/quiche/quiche/common/quiche_random.cc
203
- third_party/quiche/quiche/common/quiche_random.h
204
- third_party/quiche/quiche/common/quiche_text_utils.cc
205
- third_party/quiche/quiche/common/quiche_text_utils.h
206
- third_party/quiche/quiche/common/simple_buffer_allocator.cc
207
- third_party/quiche/quiche/common/structured_headers.h
208
- third_party/quiche/quiche/common/structured_headers.cc
209
- third_party/quiche/quiche/http2/adapter/data_source.h
210
- third_party/quiche/quiche/http2/adapter/event_forwarder.cc
211
- third_party/quiche/quiche/http2/adapter/event_forwarder.h
212
- third_party/quiche/quiche/http2/adapter/header_validator.cc
213
- third_party/quiche/quiche/http2/adapter/header_validator.h
214
- third_party/quiche/quiche/http2/adapter/http2_adapter.h
215
- third_party/quiche/quiche/http2/adapter/http2_protocol.cc
216
- third_party/quiche/quiche/http2/adapter/http2_protocol.h
217
- third_party/quiche/quiche/http2/adapter/http2_session.h
218
- third_party/quiche/quiche/http2/adapter/http2_util.cc
219
- third_party/quiche/quiche/http2/adapter/http2_util.h
220
- third_party/quiche/quiche/http2/adapter/http2_visitor_interface.h
221
- third_party/quiche/quiche/http2/adapter/noop_header_validator.h
222
- third_party/quiche/quiche/http2/adapter/noop_header_validator.cc
223
- third_party/quiche/quiche/http2/adapter/oghttp2_adapter.cc
224
- third_party/quiche/quiche/http2/adapter/oghttp2_adapter.h
225
- third_party/quiche/quiche/http2/adapter/oghttp2_session.cc
226
- third_party/quiche/quiche/http2/adapter/oghttp2_session.h
227
- third_party/quiche/quiche/http2/adapter/oghttp2_util.cc
228
- third_party/quiche/quiche/http2/adapter/oghttp2_util.h
229
- third_party/quiche/quiche/http2/adapter/window_manager.cc
230
- third_party/quiche/quiche/http2/adapter/window_manager.h
231
- third_party/quiche/quiche/http2/core/http2_trace_logging.cc
232
- third_party/quiche/quiche/http2/core/http2_trace_logging.h
233
- third_party/quiche/quiche/http2/core/priority_write_scheduler.h
234
- third_party/quiche/quiche/http2/decoder/decode_buffer.cc
235
- third_party/quiche/quiche/http2/decoder/decode_buffer.h
236
- third_party/quiche/quiche/http2/decoder/decode_http2_structures.cc
237
- third_party/quiche/quiche/http2/decoder/decode_http2_structures.h
238
- third_party/quiche/quiche/http2/decoder/decode_status.cc
239
- third_party/quiche/quiche/http2/decoder/decode_status.h
240
- third_party/quiche/quiche/http2/decoder/frame_decoder_state.cc
241
- third_party/quiche/quiche/http2/decoder/frame_decoder_state.h
242
- third_party/quiche/quiche/http2/decoder/http2_frame_decoder.cc
243
- third_party/quiche/quiche/http2/decoder/http2_frame_decoder.h
244
- third_party/quiche/quiche/http2/decoder/http2_frame_decoder_listener.cc
245
- third_party/quiche/quiche/http2/decoder/http2_frame_decoder_listener.h
246
- third_party/quiche/quiche/http2/decoder/http2_structure_decoder.cc
247
- third_party/quiche/quiche/http2/decoder/http2_structure_decoder.h
248
- third_party/quiche/quiche/http2/decoder/payload_decoders/altsvc_payload_decoder.cc
249
- third_party/quiche/quiche/http2/decoder/payload_decoders/altsvc_payload_decoder.h
250
- third_party/quiche/quiche/http2/decoder/payload_decoders/continuation_payload_decoder.cc
251
- third_party/quiche/quiche/http2/decoder/payload_decoders/continuation_payload_decoder.h
252
- third_party/quiche/quiche/http2/decoder/payload_decoders/data_payload_decoder.cc
253
- third_party/quiche/quiche/http2/decoder/payload_decoders/data_payload_decoder.h
254
- third_party/quiche/quiche/http2/decoder/payload_decoders/goaway_payload_decoder.cc
255
- third_party/quiche/quiche/http2/decoder/payload_decoders/goaway_payload_decoder.h
256
- third_party/quiche/quiche/http2/decoder/payload_decoders/headers_payload_decoder.cc
257
- third_party/quiche/quiche/http2/decoder/payload_decoders/headers_payload_decoder.h
258
- third_party/quiche/quiche/http2/decoder/payload_decoders/ping_payload_decoder.cc
259
- third_party/quiche/quiche/http2/decoder/payload_decoders/ping_payload_decoder.h
260
- third_party/quiche/quiche/http2/decoder/payload_decoders/priority_payload_decoder.cc
261
- third_party/quiche/quiche/http2/decoder/payload_decoders/priority_payload_decoder.h
262
- third_party/quiche/quiche/http2/decoder/payload_decoders/priority_update_payload_decoder.cc
263
- third_party/quiche/quiche/http2/decoder/payload_decoders/priority_update_payload_decoder.h
264
- third_party/quiche/quiche/http2/decoder/payload_decoders/push_promise_payload_decoder.cc
265
- third_party/quiche/quiche/http2/decoder/payload_decoders/push_promise_payload_decoder.h
266
- third_party/quiche/quiche/http2/decoder/payload_decoders/rst_stream_payload_decoder.cc
267
- third_party/quiche/quiche/http2/decoder/payload_decoders/rst_stream_payload_decoder.h
268
- third_party/quiche/quiche/http2/decoder/payload_decoders/settings_payload_decoder.cc
269
- third_party/quiche/quiche/http2/decoder/payload_decoders/settings_payload_decoder.h
270
- third_party/quiche/quiche/http2/decoder/payload_decoders/unknown_payload_decoder.cc
271
- third_party/quiche/quiche/http2/decoder/payload_decoders/unknown_payload_decoder.h
272
- third_party/quiche/quiche/http2/decoder/payload_decoders/window_update_payload_decoder.cc
273
- third_party/quiche/quiche/http2/decoder/payload_decoders/window_update_payload_decoder.h
274
- third_party/quiche/quiche/http2/hpack/decoder/hpack_block_decoder.cc
275
- third_party/quiche/quiche/http2/hpack/decoder/hpack_block_decoder.h
276
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder.cc
277
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder.h
278
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder_listener.cc
279
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder_listener.h
280
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder_state.cc
281
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder_state.h
282
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder_string_buffer.cc
283
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder_string_buffer.h
284
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder_tables.cc
285
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoder_tables.h
286
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoding_error.cc
287
- third_party/quiche/quiche/http2/hpack/decoder/hpack_decoding_error.h
288
- third_party/quiche/quiche/http2/hpack/decoder/hpack_entry_decoder.cc
289
- third_party/quiche/quiche/http2/hpack/decoder/hpack_entry_decoder.h
290
- third_party/quiche/quiche/http2/hpack/decoder/hpack_entry_decoder_listener.cc
291
- third_party/quiche/quiche/http2/hpack/decoder/hpack_entry_decoder_listener.h
292
- third_party/quiche/quiche/http2/hpack/decoder/hpack_entry_type_decoder.cc
293
- third_party/quiche/quiche/http2/hpack/decoder/hpack_entry_type_decoder.h
294
- third_party/quiche/quiche/http2/hpack/decoder/hpack_string_decoder.cc
295
- third_party/quiche/quiche/http2/hpack/decoder/hpack_string_decoder.h
296
- third_party/quiche/quiche/http2/hpack/decoder/hpack_string_decoder_listener.cc
297
- third_party/quiche/quiche/http2/hpack/decoder/hpack_string_decoder_listener.h
298
- third_party/quiche/quiche/http2/hpack/decoder/hpack_whole_entry_buffer.cc
299
- third_party/quiche/quiche/http2/hpack/decoder/hpack_whole_entry_buffer.h
300
- third_party/quiche/quiche/http2/hpack/decoder/hpack_whole_entry_listener.cc
301
- third_party/quiche/quiche/http2/hpack/decoder/hpack_whole_entry_listener.h
302
- third_party/quiche/quiche/http2/hpack/hpack_static_table_entries.inc
303
- third_party/quiche/quiche/http2/hpack/http2_hpack_constants.cc
304
- third_party/quiche/quiche/http2/hpack/http2_hpack_constants.h
305
- third_party/quiche/quiche/http2/hpack/huffman/hpack_huffman_decoder.cc
306
- third_party/quiche/quiche/http2/hpack/huffman/hpack_huffman_decoder.h
307
- third_party/quiche/quiche/http2/hpack/huffman/hpack_huffman_encoder.cc
308
- third_party/quiche/quiche/http2/hpack/huffman/hpack_huffman_encoder.h
309
- third_party/quiche/quiche/http2/hpack/huffman/huffman_spec_tables.cc
310
- third_party/quiche/quiche/http2/hpack/huffman/huffman_spec_tables.h
311
- third_party/quiche/quiche/http2/hpack/varint/hpack_varint_decoder.cc
312
- third_party/quiche/quiche/http2/hpack/varint/hpack_varint_decoder.h
313
- third_party/quiche/quiche/http2/hpack/varint/hpack_varint_encoder.cc
314
- third_party/quiche/quiche/http2/hpack/varint/hpack_varint_encoder.h
315
- third_party/quiche/quiche/http2/http2_constants.cc
316
- third_party/quiche/quiche/http2/http2_constants.h
317
- third_party/quiche/quiche/http2/http2_structures.cc
318
- third_party/quiche/quiche/http2/http2_structures.h
319
- #third_party/quiche/quiche/http2/platform/api/http2_macros.h
320
- third_party/quiche/quiche/quic/bindings/quic_libevent.h
321
- third_party/quiche/quiche/quic/bindings/quic_libevent.cc
322
- third_party/quiche/quiche/quic/core/chlo_extractor.cc
323
- third_party/quiche/quiche/quic/core/chlo_extractor.h
324
- third_party/quiche/quiche/quic/core/quic_ping_manager.cc
325
- third_party/quiche/quiche/quic/core/quic_ping_manager.h
326
- third_party/quiche/quiche/quic/core/congestion_control/bandwidth_sampler.cc
327
- third_party/quiche/quiche/quic/core/congestion_control/bandwidth_sampler.h
328
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_drain.cc
329
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_drain.h
330
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_misc.cc
331
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_misc.h
332
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_probe_bw.cc
333
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_probe_bw.h
334
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_probe_rtt.cc
335
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_probe_rtt.h
336
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_sender.cc
337
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_sender.h
338
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_startup.cc
339
- third_party/quiche/quiche/quic/core/congestion_control/bbr2_startup.h
340
- third_party/quiche/quiche/quic/core/congestion_control/bbr_sender.cc
341
- third_party/quiche/quiche/quic/core/congestion_control/bbr_sender.h
342
- third_party/quiche/quiche/quic/core/congestion_control/cubic_bytes.cc
343
- third_party/quiche/quiche/quic/core/congestion_control/cubic_bytes.h
344
- third_party/quiche/quiche/quic/core/congestion_control/general_loss_algorithm.cc
345
- third_party/quiche/quiche/quic/core/congestion_control/general_loss_algorithm.h
346
- third_party/quiche/quiche/quic/core/congestion_control/hybrid_slow_start.cc
347
- third_party/quiche/quiche/quic/core/congestion_control/hybrid_slow_start.h
348
- third_party/quiche/quiche/quic/core/congestion_control/loss_detection_interface.h
349
- third_party/quiche/quiche/quic/core/congestion_control/pacing_sender.cc
350
- third_party/quiche/quiche/quic/core/congestion_control/pacing_sender.h
351
- third_party/quiche/quiche/quic/core/congestion_control/prr_sender.cc
352
- third_party/quiche/quiche/quic/core/congestion_control/prr_sender.h
353
- third_party/quiche/quiche/quic/core/congestion_control/rtt_stats.cc
354
- third_party/quiche/quiche/quic/core/congestion_control/rtt_stats.h
355
- third_party/quiche/quiche/quic/core/congestion_control/send_algorithm_interface.cc
356
- third_party/quiche/quiche/quic/core/congestion_control/send_algorithm_interface.h
357
- third_party/quiche/quiche/quic/core/congestion_control/tcp_cubic_sender_bytes.cc
358
- third_party/quiche/quiche/quic/core/congestion_control/tcp_cubic_sender_bytes.h
359
- third_party/quiche/quiche/quic/core/congestion_control/uber_loss_algorithm.cc
360
- third_party/quiche/quiche/quic/core/congestion_control/uber_loss_algorithm.h
361
- third_party/quiche/quiche/quic/core/congestion_control/windowed_filter.h
362
- third_party/quiche/quiche/quic/core/crypto/aead_base_decrypter.cc
363
- third_party/quiche/quiche/quic/core/crypto/aead_base_decrypter.h
364
- third_party/quiche/quiche/quic/core/crypto/aead_base_encrypter.cc
365
- third_party/quiche/quiche/quic/core/crypto/aead_base_encrypter.h
366
- third_party/quiche/quiche/quic/core/crypto/aes_128_gcm_12_decrypter.cc
367
- third_party/quiche/quiche/quic/core/crypto/aes_128_gcm_12_decrypter.h
368
- third_party/quiche/quiche/quic/core/crypto/aes_128_gcm_12_encrypter.cc
369
- third_party/quiche/quiche/quic/core/crypto/aes_128_gcm_12_encrypter.h
370
- third_party/quiche/quiche/quic/core/crypto/aes_128_gcm_decrypter.cc
371
- third_party/quiche/quiche/quic/core/crypto/aes_128_gcm_decrypter.h
372
- third_party/quiche/quiche/quic/core/crypto/aes_128_gcm_encrypter.cc
373
- third_party/quiche/quiche/quic/core/crypto/aes_128_gcm_encrypter.h
374
- third_party/quiche/quiche/quic/core/crypto/aes_256_gcm_decrypter.cc
375
- third_party/quiche/quiche/quic/core/crypto/aes_256_gcm_decrypter.h
376
- third_party/quiche/quiche/quic/core/crypto/aes_256_gcm_encrypter.cc
377
- third_party/quiche/quiche/quic/core/crypto/aes_256_gcm_encrypter.h
378
- third_party/quiche/quiche/quic/core/crypto/aes_base_decrypter.cc
379
- third_party/quiche/quiche/quic/core/crypto/aes_base_decrypter.h
380
- third_party/quiche/quiche/quic/core/crypto/aes_base_encrypter.cc
381
- third_party/quiche/quiche/quic/core/crypto/aes_base_encrypter.h
382
- third_party/quiche/quiche/quic/core/crypto/boring_utils.h
383
- third_party/quiche/quiche/quic/core/crypto/cert_compressor.cc
384
- third_party/quiche/quiche/quic/core/crypto/cert_compressor.h
385
- third_party/quiche/quiche/quic/core/crypto/certificate_view.cc
386
- third_party/quiche/quiche/quic/core/crypto/certificate_view.h
387
- third_party/quiche/quiche/quic/core/crypto/chacha20_poly1305_decrypter.cc
388
- third_party/quiche/quiche/quic/core/crypto/chacha20_poly1305_decrypter.h
389
- third_party/quiche/quiche/quic/core/crypto/chacha20_poly1305_encrypter.cc
390
- third_party/quiche/quiche/quic/core/crypto/chacha20_poly1305_encrypter.h
391
- third_party/quiche/quiche/quic/core/crypto/chacha20_poly1305_tls_decrypter.cc
392
- third_party/quiche/quiche/quic/core/crypto/chacha20_poly1305_tls_decrypter.h
393
- third_party/quiche/quiche/quic/core/crypto/chacha20_poly1305_tls_encrypter.cc
394
- third_party/quiche/quiche/quic/core/crypto/chacha20_poly1305_tls_encrypter.h
395
- third_party/quiche/quiche/quic/core/crypto/chacha_base_decrypter.cc
396
- third_party/quiche/quiche/quic/core/crypto/chacha_base_decrypter.h
397
- third_party/quiche/quiche/quic/core/crypto/chacha_base_encrypter.cc
398
- third_party/quiche/quiche/quic/core/crypto/chacha_base_encrypter.h
399
- third_party/quiche/quiche/quic/core/crypto/channel_id.cc
400
- third_party/quiche/quiche/quic/core/crypto/channel_id.h
401
- third_party/quiche/quiche/quic/core/crypto/client_proof_source.cc
402
- third_party/quiche/quiche/quic/core/crypto/client_proof_source.h
403
- third_party/quiche/quiche/quic/core/crypto/crypto_framer.cc
404
- third_party/quiche/quiche/quic/core/crypto/crypto_framer.h
405
- third_party/quiche/quiche/quic/core/crypto/crypto_handshake.cc
406
- third_party/quiche/quiche/quic/core/crypto/crypto_handshake.h
407
- third_party/quiche/quiche/quic/core/crypto/crypto_handshake_message.cc
408
- third_party/quiche/quiche/quic/core/crypto/crypto_handshake_message.h
409
- third_party/quiche/quiche/quic/core/crypto/crypto_message_parser.h
410
- third_party/quiche/quiche/quic/core/crypto/crypto_protocol.h
411
- third_party/quiche/quiche/quic/core/crypto/crypto_secret_boxer.cc
412
- third_party/quiche/quiche/quic/core/crypto/crypto_secret_boxer.h
413
- third_party/quiche/quiche/quic/core/crypto/crypto_utils.cc
414
- third_party/quiche/quiche/quic/core/crypto/crypto_utils.h
415
- third_party/quiche/quiche/quic/core/crypto/curve25519_key_exchange.cc
416
- third_party/quiche/quiche/quic/core/crypto/curve25519_key_exchange.h
417
- third_party/quiche/quiche/quic/core/crypto/key_exchange.cc
418
- third_party/quiche/quiche/quic/core/crypto/key_exchange.h
419
- third_party/quiche/quiche/quic/core/crypto/null_decrypter.cc
420
- third_party/quiche/quiche/quic/core/crypto/null_decrypter.h
421
- third_party/quiche/quiche/quic/core/crypto/null_encrypter.cc
422
- third_party/quiche/quiche/quic/core/crypto/null_encrypter.h
423
- third_party/quiche/quiche/quic/core/crypto/p256_key_exchange.cc
424
- third_party/quiche/quiche/quic/core/crypto/p256_key_exchange.h
425
- third_party/quiche/quiche/quic/core/crypto/proof_source_x509.cc
426
- third_party/quiche/quiche/quic/core/crypto/proof_source_x509.h
427
- third_party/quiche/quiche/quic/core/crypto/proof_source.cc
428
- third_party/quiche/quiche/quic/core/crypto/proof_source.h
429
- third_party/quiche/quiche/quic/core/crypto/proof_verifier.h
430
- third_party/quiche/quiche/quic/core/crypto/quic_client_session_cache.cc
431
- third_party/quiche/quiche/quic/core/crypto/quic_client_session_cache.h
432
- third_party/quiche/quiche/quic/core/crypto/quic_compressed_certs_cache.cc
433
- third_party/quiche/quiche/quic/core/crypto/quic_compressed_certs_cache.h
434
- third_party/quiche/quiche/quic/core/crypto/quic_crypter.cc
435
- third_party/quiche/quiche/quic/core/crypto/quic_crypter.h
436
- third_party/quiche/quiche/quic/core/crypto/quic_crypto_client_config.cc
437
- third_party/quiche/quiche/quic/core/crypto/quic_crypto_client_config.h
438
- third_party/quiche/quiche/quic/core/crypto/quic_crypto_proof.cc
439
- third_party/quiche/quiche/quic/core/crypto/quic_crypto_proof.h
440
- third_party/quiche/quiche/quic/core/crypto/quic_crypto_server_config.cc
441
- third_party/quiche/quiche/quic/core/crypto/quic_crypto_server_config.h
442
- third_party/quiche/quiche/quic/core/crypto/quic_decrypter.cc
443
- third_party/quiche/quiche/quic/core/crypto/quic_decrypter.h
444
- third_party/quiche/quiche/quic/core/crypto/quic_encrypter.cc
445
- third_party/quiche/quiche/quic/core/crypto/quic_encrypter.h
446
- third_party/quiche/quiche/quic/core/crypto/quic_hkdf.cc
447
- third_party/quiche/quiche/quic/core/crypto/quic_hkdf.h
448
- third_party/quiche/quiche/quic/core/crypto/tls_client_connection.cc
449
- third_party/quiche/quiche/quic/core/crypto/tls_client_connection.h
450
- third_party/quiche/quiche/quic/core/crypto/tls_connection.cc
451
- third_party/quiche/quiche/quic/core/crypto/tls_connection.h
452
- third_party/quiche/quiche/quic/core/crypto/tls_server_connection.cc
453
- third_party/quiche/quiche/quic/core/crypto/tls_server_connection.h
454
- third_party/quiche/quiche/quic/core/crypto/transport_parameters.cc
455
- third_party/quiche/quiche/quic/core/crypto/transport_parameters.h
456
- third_party/quiche/quiche/quic/core/crypto/web_transport_fingerprint_proof_verifier.cc
457
- third_party/quiche/quiche/quic/core/crypto/web_transport_fingerprint_proof_verifier.h
458
- third_party/quiche/quiche/quic/core/frames/quic_ack_frame.cc
459
- third_party/quiche/quiche/quic/core/frames/quic_ack_frame.h
460
- third_party/quiche/quiche/quic/core/frames/quic_ack_frequency_frame.cc
461
- third_party/quiche/quiche/quic/core/frames/quic_ack_frequency_frame.h
462
- third_party/quiche/quiche/quic/core/frames/quic_blocked_frame.cc
463
- third_party/quiche/quiche/quic/core/frames/quic_blocked_frame.h
464
- third_party/quiche/quiche/quic/core/frames/quic_connection_close_frame.cc
465
- third_party/quiche/quiche/quic/core/frames/quic_connection_close_frame.h
466
- third_party/quiche/quiche/quic/core/frames/quic_crypto_frame.cc
467
- third_party/quiche/quiche/quic/core/frames/quic_crypto_frame.h
468
- third_party/quiche/quiche/quic/core/frames/quic_frame.cc
469
- third_party/quiche/quiche/quic/core/frames/quic_frame.h
470
- third_party/quiche/quiche/quic/core/frames/quic_goaway_frame.cc
471
- third_party/quiche/quiche/quic/core/frames/quic_goaway_frame.h
472
- third_party/quiche/quiche/quic/core/frames/quic_handshake_done_frame.cc
473
- third_party/quiche/quiche/quic/core/frames/quic_handshake_done_frame.h
474
- third_party/quiche/quiche/quic/core/frames/quic_inlined_frame.h
475
- third_party/quiche/quiche/quic/core/frames/quic_max_streams_frame.cc
476
- third_party/quiche/quiche/quic/core/frames/quic_max_streams_frame.h
477
- third_party/quiche/quiche/quic/core/frames/quic_message_frame.cc
478
- third_party/quiche/quiche/quic/core/frames/quic_message_frame.h
479
- third_party/quiche/quiche/quic/core/frames/quic_mtu_discovery_frame.h
480
- third_party/quiche/quiche/quic/core/frames/quic_new_connection_id_frame.cc
481
- third_party/quiche/quiche/quic/core/frames/quic_new_connection_id_frame.h
482
- third_party/quiche/quiche/quic/core/frames/quic_new_token_frame.cc
483
- third_party/quiche/quiche/quic/core/frames/quic_new_token_frame.h
484
- third_party/quiche/quiche/quic/core/frames/quic_padding_frame.cc
485
- third_party/quiche/quiche/quic/core/frames/quic_padding_frame.h
486
- third_party/quiche/quiche/quic/core/frames/quic_path_challenge_frame.cc
487
- third_party/quiche/quiche/quic/core/frames/quic_path_challenge_frame.h
488
- third_party/quiche/quiche/quic/core/frames/quic_path_response_frame.cc
489
- third_party/quiche/quiche/quic/core/frames/quic_path_response_frame.h
490
- third_party/quiche/quiche/quic/core/frames/quic_ping_frame.cc
491
- third_party/quiche/quiche/quic/core/frames/quic_ping_frame.h
492
- third_party/quiche/quiche/quic/core/frames/quic_retire_connection_id_frame.cc
493
- third_party/quiche/quiche/quic/core/frames/quic_retire_connection_id_frame.h
494
- third_party/quiche/quiche/quic/core/frames/quic_rst_stream_frame.cc
495
- third_party/quiche/quiche/quic/core/frames/quic_rst_stream_frame.h
496
- third_party/quiche/quiche/quic/core/frames/quic_stop_sending_frame.cc
497
- third_party/quiche/quiche/quic/core/frames/quic_stop_sending_frame.h
498
- third_party/quiche/quiche/quic/core/frames/quic_stop_waiting_frame.cc
499
- third_party/quiche/quiche/quic/core/frames/quic_stop_waiting_frame.h
500
- third_party/quiche/quiche/quic/core/frames/quic_stream_frame.cc
501
- third_party/quiche/quiche/quic/core/frames/quic_stream_frame.h
502
- third_party/quiche/quiche/quic/core/frames/quic_streams_blocked_frame.cc
503
- third_party/quiche/quiche/quic/core/frames/quic_streams_blocked_frame.h
504
- third_party/quiche/quiche/quic/core/frames/quic_window_update_frame.cc
505
- third_party/quiche/quiche/quic/core/frames/quic_window_update_frame.h
506
- third_party/quiche/quiche/quic/core/handshaker_delegate_interface.h
507
- third_party/quiche/quiche/quic/core/http/http_constants.cc
508
- third_party/quiche/quiche/quic/core/http/http_constants.h
509
- third_party/quiche/quiche/quic/core/http/http_decoder.cc
510
- third_party/quiche/quiche/quic/core/http/http_decoder.h
511
- third_party/quiche/quiche/quic/core/http/http_encoder.cc
512
- third_party/quiche/quiche/quic/core/http/http_encoder.h
513
- third_party/quiche/quiche/quic/core/http/http_frames.h
514
- third_party/quiche/quiche/quic/core/http/quic_client_promised_info.cc
515
- third_party/quiche/quiche/quic/core/http/quic_client_promised_info.h
516
- third_party/quiche/quiche/quic/core/http/quic_client_push_promise_index.cc
517
- third_party/quiche/quiche/quic/core/http/quic_client_push_promise_index.h
518
- third_party/quiche/quiche/quic/core/http/quic_header_list.cc
519
- third_party/quiche/quiche/quic/core/http/quic_header_list.h
520
- third_party/quiche/quiche/quic/core/http/quic_headers_stream.cc
521
- third_party/quiche/quiche/quic/core/http/quic_headers_stream.h
522
- third_party/quiche/quiche/quic/core/http/quic_receive_control_stream.cc
523
- third_party/quiche/quiche/quic/core/http/quic_receive_control_stream.h
524
- third_party/quiche/quiche/quic/core/http/quic_send_control_stream.cc
525
- third_party/quiche/quiche/quic/core/http/quic_send_control_stream.h
526
- third_party/quiche/quiche/quic/core/http/quic_server_initiated_spdy_stream.cc
527
- third_party/quiche/quiche/quic/core/http/quic_server_initiated_spdy_stream.h
528
- third_party/quiche/quiche/quic/core/http/quic_server_session_base.cc
529
- third_party/quiche/quiche/quic/core/http/quic_server_session_base.h
530
- third_party/quiche/quiche/quic/core/http/quic_spdy_client_session.cc
531
- third_party/quiche/quiche/quic/core/http/quic_spdy_client_session.h
532
- third_party/quiche/quiche/quic/core/http/quic_spdy_client_session_base.cc
533
- third_party/quiche/quiche/quic/core/http/quic_spdy_client_session_base.h
534
- third_party/quiche/quiche/quic/core/http/quic_spdy_client_stream.cc
535
- third_party/quiche/quiche/quic/core/http/quic_spdy_client_stream.h
536
- third_party/quiche/quiche/quic/core/http/quic_spdy_server_stream_base.cc
537
- third_party/quiche/quiche/quic/core/http/quic_spdy_server_stream_base.h
538
- third_party/quiche/quiche/quic/core/http/quic_spdy_session.cc
539
- third_party/quiche/quiche/quic/core/http/quic_spdy_session.h
540
- third_party/quiche/quiche/quic/core/http/quic_spdy_stream.cc
541
- third_party/quiche/quiche/quic/core/http/quic_spdy_stream.h
542
- third_party/quiche/quiche/quic/core/http/quic_spdy_stream_body_manager.cc
543
- third_party/quiche/quiche/quic/core/http/quic_spdy_stream_body_manager.h
544
- third_party/quiche/quiche/quic/core/http/spdy_server_push_utils.cc
545
- third_party/quiche/quiche/quic/core/http/spdy_server_push_utils.h
546
- third_party/quiche/quiche/quic/core/http/spdy_utils.cc
547
- third_party/quiche/quiche/quic/core/http/spdy_utils.h
548
- third_party/quiche/quiche/quic/core/http/web_transport_http3.cc
549
- third_party/quiche/quiche/quic/core/http/web_transport_http3.h
550
- third_party/quiche/quiche/quic/core/http/web_transport_stream_adapter.cc
551
- third_party/quiche/quiche/quic/core/http/web_transport_stream_adapter.h
552
- third_party/quiche/quiche/quic/core/io/quic_event_loop.h
553
- third_party/quiche/quiche/quic/core/io/quic_default_event_loop.cc
554
- third_party/quiche/quiche/quic/core/io/quic_default_event_loop.h
555
- third_party/quiche/quiche/quic/core/io/quic_poll_event_loop.cc
556
- third_party/quiche/quiche/quic/core/io/quic_poll_event_loop.h
557
- third_party/quiche/quiche/quic/core/io/socket.h
558
- third_party/quiche/quiche/quic/core/io/socket.cc
559
- third_party/quiche/quiche/quic/core/io/socket_posix.inc
560
- third_party/quiche/quiche/quic/core/io/socket_win.inc
561
- third_party/quiche/quiche/quic/core/io/socket_internal.h
562
- third_party/quiche/quiche/quic/core/legacy_quic_stream_id_manager.cc
563
- third_party/quiche/quiche/quic/core/legacy_quic_stream_id_manager.h
564
- third_party/quiche/quiche/quic/core/packet_number_indexed_queue.h
565
- third_party/quiche/quiche/quic/core/proto/cached_network_parameters_proto.h
566
- third_party/quiche/quiche/quic/core/proto/crypto_server_config_proto.h
567
- third_party/quiche/quiche/quic/core/proto/source_address_token_proto.h
568
- third_party/quiche/quiche/quic/core/qpack/qpack_blocking_manager.cc
569
- third_party/quiche/quiche/quic/core/qpack/qpack_blocking_manager.h
570
- third_party/quiche/quiche/quic/core/qpack/qpack_decoded_headers_accumulator.cc
571
- third_party/quiche/quiche/quic/core/qpack/qpack_decoded_headers_accumulator.h
572
- third_party/quiche/quiche/quic/core/qpack/qpack_decoder.cc
573
- third_party/quiche/quiche/quic/core/qpack/qpack_decoder.h
574
- third_party/quiche/quiche/quic/core/qpack/qpack_decoder_stream_receiver.cc
575
- third_party/quiche/quiche/quic/core/qpack/qpack_decoder_stream_receiver.h
576
- third_party/quiche/quiche/quic/core/qpack/qpack_decoder_stream_sender.cc
577
- third_party/quiche/quiche/quic/core/qpack/qpack_decoder_stream_sender.h
578
- third_party/quiche/quiche/quic/core/qpack/qpack_encoder.cc
579
- third_party/quiche/quiche/quic/core/qpack/qpack_encoder.h
580
- third_party/quiche/quiche/quic/core/qpack/qpack_encoder_stream_receiver.cc
581
- third_party/quiche/quiche/quic/core/qpack/qpack_encoder_stream_receiver.h
582
- third_party/quiche/quiche/quic/core/qpack/qpack_encoder_stream_sender.cc
583
- third_party/quiche/quiche/quic/core/qpack/qpack_encoder_stream_sender.h
584
- third_party/quiche/quiche/quic/core/qpack/qpack_header_table.cc
585
- third_party/quiche/quiche/quic/core/qpack/qpack_header_table.h
586
- third_party/quiche/quiche/quic/core/qpack/qpack_index_conversions.cc
587
- third_party/quiche/quiche/quic/core/qpack/qpack_index_conversions.h
588
- third_party/quiche/quiche/quic/core/qpack/qpack_instruction_decoder.cc
589
- third_party/quiche/quiche/quic/core/qpack/qpack_instruction_decoder.h
590
- third_party/quiche/quiche/quic/core/qpack/qpack_instruction_encoder.cc
591
- third_party/quiche/quiche/quic/core/qpack/qpack_instruction_encoder.h
592
- third_party/quiche/quiche/quic/core/qpack/qpack_instructions.cc
593
- third_party/quiche/quiche/quic/core/qpack/qpack_instructions.h
594
- third_party/quiche/quiche/quic/core/qpack/qpack_progressive_decoder.cc
595
- third_party/quiche/quiche/quic/core/qpack/qpack_progressive_decoder.h
596
- third_party/quiche/quiche/quic/core/qpack/qpack_receive_stream.cc
597
- third_party/quiche/quiche/quic/core/qpack/qpack_receive_stream.h
598
- third_party/quiche/quiche/quic/core/qpack/qpack_required_insert_count.cc
599
- third_party/quiche/quiche/quic/core/qpack/qpack_required_insert_count.h
600
- third_party/quiche/quiche/quic/core/qpack/qpack_send_stream.cc
601
- third_party/quiche/quiche/quic/core/qpack/qpack_send_stream.h
602
- third_party/quiche/quiche/quic/core/qpack/qpack_static_table.cc
603
- third_party/quiche/quiche/quic/core/qpack/qpack_static_table.h
604
- third_party/quiche/quiche/quic/core/qpack/qpack_stream_receiver.h
605
- third_party/quiche/quiche/quic/core/qpack/qpack_stream_sender_delegate.h
606
- third_party/quiche/quiche/quic/core/qpack/value_splitting_header_list.cc
607
- third_party/quiche/quiche/quic/core/qpack/value_splitting_header_list.h
608
- third_party/quiche/quiche/quic/core/quic_ack_listener_interface.cc
609
- third_party/quiche/quiche/quic/core/quic_ack_listener_interface.h
610
- third_party/quiche/quiche/quic/core/quic_alarm.cc
611
- third_party/quiche/quiche/quic/core/quic_alarm.h
612
- third_party/quiche/quiche/quic/core/quic_alarm_factory.h
613
- third_party/quiche/quiche/quic/core/quic_arena_scoped_ptr.h
614
- third_party/quiche/quiche/quic/core/quic_bandwidth.cc
615
- third_party/quiche/quiche/quic/core/quic_bandwidth.h
616
- third_party/quiche/quiche/quic/core/quic_blocked_writer_interface.h
617
- third_party/quiche/quiche/quic/core/quic_buffered_packet_store.cc
618
- third_party/quiche/quiche/quic/core/quic_buffered_packet_store.h
619
- third_party/quiche/quiche/quic/core/quic_chaos_protector.cc
620
- third_party/quiche/quiche/quic/core/quic_chaos_protector.h
621
- third_party/quiche/quiche/quic/core/quic_clock.h
622
- third_party/quiche/quiche/quic/core/quic_coalesced_packet.cc
623
- third_party/quiche/quiche/quic/core/quic_coalesced_packet.h
624
- third_party/quiche/quiche/quic/core/quic_config.cc
625
- third_party/quiche/quiche/quic/core/quic_config.h
626
- third_party/quiche/quiche/quic/core/quic_connection.cc
627
- third_party/quiche/quiche/quic/core/quic_connection.h
628
- third_party/quiche/quiche/quic/core/quic_connection_context.cc
629
- third_party/quiche/quiche/quic/core/quic_connection_context.h
630
- third_party/quiche/quiche/quic/core/quic_connection_id.cc
631
- third_party/quiche/quiche/quic/core/quic_connection_id.h
632
- third_party/quiche/quiche/quic/core/quic_connection_id_manager.cc
633
- third_party/quiche/quiche/quic/core/quic_connection_id_manager.h
634
- third_party/quiche/quiche/quic/core/quic_connection_stats.cc
635
- third_party/quiche/quiche/quic/core/quic_connection_stats.h
636
- third_party/quiche/quiche/quic/core/quic_constants.cc
637
- third_party/quiche/quiche/quic/core/quic_constants.h
638
- third_party/quiche/quiche/quic/core/quic_control_frame_manager.cc
639
- third_party/quiche/quiche/quic/core/quic_control_frame_manager.h
640
- third_party/quiche/quiche/quic/core/quic_crypto_client_handshaker.cc
641
- third_party/quiche/quiche/quic/core/quic_crypto_client_handshaker.h
642
- third_party/quiche/quiche/quic/core/quic_crypto_client_stream.cc
643
- third_party/quiche/quiche/quic/core/quic_crypto_client_stream.h
644
- third_party/quiche/quiche/quic/core/quic_crypto_handshaker.cc
645
- third_party/quiche/quiche/quic/core/quic_crypto_handshaker.h
646
- third_party/quiche/quiche/quic/core/quic_crypto_server_stream.cc
647
- third_party/quiche/quiche/quic/core/quic_crypto_server_stream.h
648
- third_party/quiche/quiche/quic/core/quic_crypto_server_stream_base.cc
649
- third_party/quiche/quiche/quic/core/quic_crypto_server_stream_base.h
650
- third_party/quiche/quiche/quic/core/quic_crypto_stream.cc
651
- third_party/quiche/quiche/quic/core/quic_crypto_stream.h
652
- third_party/quiche/quiche/quic/core/quic_data_reader.cc
653
- third_party/quiche/quiche/quic/core/quic_data_reader.h
654
- third_party/quiche/quiche/quic/core/quic_data_writer.cc
655
- third_party/quiche/quiche/quic/core/quic_data_writer.h
656
- third_party/quiche/quiche/quic/core/quic_datagram_queue.cc
657
- third_party/quiche/quiche/quic/core/quic_datagram_queue.h
658
- third_party/quiche/quiche/quic/core/quic_default_packet_writer.cc
659
- third_party/quiche/quiche/quic/core/quic_default_packet_writer.h
660
- third_party/quiche/quiche/quic/core/quic_default_clock.cc
661
- third_party/quiche/quiche/quic/core/quic_default_clock.h
662
- third_party/quiche/quiche/quic/core/quic_default_connection_helper.h
663
- third_party/quiche/quiche/quic/core/deterministic_connection_id_generator.h
664
- third_party/quiche/quiche/quic/core/deterministic_connection_id_generator.cc
665
- third_party/quiche/quiche/quic/core/quic_dispatcher.cc
666
- third_party/quiche/quiche/quic/core/quic_dispatcher.h
667
- third_party/quiche/quiche/quic/core/quic_error_codes.cc
668
- third_party/quiche/quiche/quic/core/quic_error_codes.h
669
- third_party/quiche/quiche/quic/core/quic_flags_list.h
670
- third_party/quiche/quiche/quic/core/quic_flow_controller.cc
671
- third_party/quiche/quiche/quic/core/quic_flow_controller.h
672
- third_party/quiche/quiche/quic/core/quic_framer.cc
673
- third_party/quiche/quiche/quic/core/quic_framer.h
674
- third_party/quiche/quiche/quic/core/quic_idle_network_detector.cc
675
- third_party/quiche/quiche/quic/core/quic_idle_network_detector.h
676
- third_party/quiche/quiche/quic/core/quic_interval.h
677
- third_party/quiche/quiche/quic/core/quic_interval_deque.h
678
- third_party/quiche/quiche/quic/core/quic_interval_set.h
679
- third_party/quiche/quiche/quic/core/quic_lru_cache.h
680
- third_party/quiche/quiche/quic/core/quic_mtu_discovery.cc
681
- third_party/quiche/quiche/quic/core/quic_mtu_discovery.h
682
- third_party/quiche/quiche/quic/core/quic_network_blackhole_detector.cc
683
- third_party/quiche/quiche/quic/core/quic_network_blackhole_detector.h
684
- third_party/quiche/quiche/quic/core/quic_one_block_arena.h
685
- third_party/quiche/quiche/quic/core/quic_packet_creator.cc
686
- third_party/quiche/quiche/quic/core/quic_packet_creator.h
687
- third_party/quiche/quiche/quic/core/quic_packet_number.cc
688
- third_party/quiche/quiche/quic/core/quic_packet_number.h
689
- third_party/quiche/quiche/quic/core/quic_packet_reader.cc
690
- third_party/quiche/quiche/quic/core/quic_packet_reader.h
691
- third_party/quiche/quiche/quic/core/quic_packet_writer.h
692
- third_party/quiche/quiche/quic/core/quic_packets.cc
693
- third_party/quiche/quiche/quic/core/quic_packets.h
694
- third_party/quiche/quiche/quic/core/quic_path_validator.cc
695
- third_party/quiche/quiche/quic/core/quic_path_validator.h
696
- third_party/quiche/quiche/quic/core/quic_protocol_flags_list.h
697
- third_party/quiche/quiche/quic/core/quic_received_packet_manager.cc
698
- third_party/quiche/quiche/quic/core/quic_received_packet_manager.h
699
- third_party/quiche/quiche/quic/core/quic_sent_packet_manager.cc
700
- third_party/quiche/quiche/quic/core/quic_sent_packet_manager.h
701
- third_party/quiche/quiche/quic/core/quic_server_id.cc
702
- third_party/quiche/quiche/quic/core/quic_server_id.h
703
- third_party/quiche/quiche/quic/core/quic_session.cc
704
- third_party/quiche/quiche/quic/core/quic_session.h
705
- third_party/quiche/quiche/quic/core/quic_socket_address_coder.cc
706
- third_party/quiche/quiche/quic/core/quic_socket_address_coder.h
707
- third_party/quiche/quiche/quic/core/quic_stream.cc
708
- third_party/quiche/quiche/quic/core/quic_stream.h
709
- third_party/quiche/quiche/quic/core/quic_stream_frame_data_producer.h
710
- third_party/quiche/quiche/quic/core/quic_stream_id_manager.cc
711
- third_party/quiche/quiche/quic/core/quic_stream_id_manager.h
712
- third_party/quiche/quiche/quic/core/quic_stream_priority.cc
713
- third_party/quiche/quiche/quic/core/quic_stream_priority.h
714
- third_party/quiche/quiche/quic/core/quic_stream_send_buffer.cc
715
- third_party/quiche/quiche/quic/core/quic_stream_send_buffer.h
716
- third_party/quiche/quiche/quic/core/quic_stream_sequencer.cc
717
- third_party/quiche/quiche/quic/core/quic_stream_sequencer.h
718
- third_party/quiche/quiche/quic/core/quic_stream_sequencer_buffer.cc
719
- third_party/quiche/quiche/quic/core/quic_stream_sequencer_buffer.h
720
- third_party/quiche/quiche/quic/core/quic_sustained_bandwidth_recorder.cc
721
- third_party/quiche/quiche/quic/core/quic_sustained_bandwidth_recorder.h
722
- third_party/quiche/quiche/quic/core/quic_tag.cc
723
- third_party/quiche/quiche/quic/core/quic_tag.h
724
- third_party/quiche/quiche/quic/core/quic_time.cc
725
- third_party/quiche/quiche/quic/core/quic_time.h
726
- third_party/quiche/quiche/quic/core/quic_time_wait_list_manager.cc
727
- third_party/quiche/quiche/quic/core/quic_time_wait_list_manager.h
728
- third_party/quiche/quiche/quic/core/quic_time_accumulator.h
729
- third_party/quiche/quiche/quic/core/quic_transmission_info.cc
730
- third_party/quiche/quiche/quic/core/quic_transmission_info.h
731
- third_party/quiche/quiche/quic/core/quic_types.cc
732
- third_party/quiche/quiche/quic/core/quic_types.h
733
- third_party/quiche/quiche/quic/core/quic_unacked_packet_map.cc
734
- third_party/quiche/quiche/quic/core/quic_unacked_packet_map.h
735
- third_party/quiche/quiche/quic/core/quic_udp_socket.cc
736
- third_party/quiche/quiche/quic/core/quic_udp_socket_win.inc
737
- third_party/quiche/quiche/quic/core/quic_udp_socket_posix.inc
738
- third_party/quiche/quiche/quic/core/quic_udp_socket.h
739
- third_party/quiche/quiche/quic/core/quic_utils.cc
740
- third_party/quiche/quiche/quic/core/quic_utils.h
741
- third_party/quiche/quiche/quic/core/quic_version_manager.cc
742
- third_party/quiche/quiche/quic/core/quic_version_manager.h
743
- third_party/quiche/quiche/quic/core/quic_versions.cc
744
- third_party/quiche/quiche/quic/core/quic_versions.h
745
- third_party/quiche/quiche/quic/core/quic_write_blocked_list.cc
746
- third_party/quiche/quiche/quic/core/quic_write_blocked_list.h
747
- third_party/quiche/quiche/quic/core/session_notifier_interface.h
748
- third_party/quiche/quiche/quic/core/stream_delegate_interface.h
749
- third_party/quiche/quiche/quic/core/tls_chlo_extractor.cc
750
- third_party/quiche/quiche/quic/core/tls_chlo_extractor.h
751
- third_party/quiche/quiche/quic/core/tls_client_handshaker.h
752
- third_party/quiche/quiche/quic/core/tls_client_handshaker.cc
753
- third_party/quiche/quiche/quic/core/tls_client_handshaker.h
754
- third_party/quiche/quiche/quic/core/tls_handshaker.cc
755
- third_party/quiche/quiche/quic/core/tls_handshaker.h
756
- third_party/quiche/quiche/quic/core/tls_server_handshaker.cc
757
- third_party/quiche/quiche/quic/core/tls_server_handshaker.h
758
- third_party/quiche/quiche/quic/core/uber_quic_stream_id_manager.cc
759
- third_party/quiche/quiche/quic/core/uber_quic_stream_id_manager.h
760
- third_party/quiche/quiche/quic/core/uber_received_packet_manager.cc
761
- third_party/quiche/quiche/quic/core/uber_received_packet_manager.h
762
- third_party/quiche/quiche/quic/core/web_transport_stats.h
763
- third_party/quiche/quiche/quic/core/web_transport_stats.cc
764
- third_party/quiche/quiche/quic/platform/api/quic_bug_tracker.h
765
- third_party/quiche/quiche/quic/platform/api/quic_client_stats.h
766
- third_party/quiche/quiche/quic/platform/api/quic_export.h
767
- third_party/quiche/quiche/quic/platform/api/quic_exported_stats.h
768
- third_party/quiche/quiche/quic/platform/api/quic_flag_utils.h
769
- third_party/quiche/quiche/quic/platform/api/quic_flags.h
770
- third_party/quiche/quiche/quic/platform/api/quic_logging.h
771
- #third_party/quiche/quiche/quic/platform/api/quic_mem_slice.h
772
- #third_party/quiche/quiche/quic/platform/api/quic_mem_slice_storage.cc
773
- #third_party/quiche/quiche/quic/platform/api/quic_mem_slice_storage.h
774
- third_party/quiche/quiche/quic/platform/api/quic_server_stats.h
775
- third_party/quiche/quiche/quic/platform/api/quic_socket_address.cc
776
- third_party/quiche/quiche/quic/platform/api/quic_socket_address.h
777
- third_party/quiche/quiche/quic/platform/api/quic_stack_trace.h
778
- third_party/quiche/quiche/quic/platform/api/quic_thread.h
779
- third_party/quiche/quiche/quic/tools/quic_simple_crypto_server_stream_helper.cc
780
- third_party/quiche/quiche/quic/tools/quic_simple_crypto_server_stream_helper.h
781
- third_party/quiche/quiche/spdy/core/hpack/hpack_constants.cc
782
- third_party/quiche/quiche/spdy/core/hpack/hpack_constants.h
783
- third_party/quiche/quiche/spdy/core/hpack/hpack_decoder_adapter.cc
784
- third_party/quiche/quiche/spdy/core/hpack/hpack_decoder_adapter.h
785
- third_party/quiche/quiche/spdy/core/hpack/hpack_encoder.cc
786
- third_party/quiche/quiche/spdy/core/hpack/hpack_encoder.h
787
- third_party/quiche/quiche/spdy/core/hpack/hpack_entry.cc
788
- third_party/quiche/quiche/spdy/core/hpack/hpack_entry.h
789
- third_party/quiche/quiche/spdy/core/hpack/hpack_header_table.cc
790
- third_party/quiche/quiche/spdy/core/hpack/hpack_header_table.h
791
- third_party/quiche/quiche/spdy/core/hpack/hpack_output_stream.cc
792
- third_party/quiche/quiche/spdy/core/hpack/hpack_output_stream.h
793
- third_party/quiche/quiche/spdy/core/hpack/hpack_static_table.cc
794
- third_party/quiche/quiche/spdy/core/hpack/hpack_static_table.h
795
- third_party/quiche/quiche/spdy/core/http2_frame_decoder_adapter.cc
796
- third_party/quiche/quiche/spdy/core/http2_frame_decoder_adapter.h
797
- third_party/quiche/quiche/spdy/core/http2_header_block.cc
798
- third_party/quiche/quiche/spdy/core/http2_header_block.h
799
- third_party/quiche/quiche/spdy/core/http2_header_storage.cc
800
- third_party/quiche/quiche/spdy/core/http2_header_storage.h
801
- third_party/quiche/quiche/spdy/core/recording_headers_handler.cc
802
- third_party/quiche/quiche/spdy/core/recording_headers_handler.h
803
- third_party/quiche/quiche/spdy/core/spdy_alt_svc_wire_format.cc
804
- third_party/quiche/quiche/spdy/core/spdy_alt_svc_wire_format.h
805
- third_party/quiche/quiche/spdy/core/spdy_bitmasks.h
806
- third_party/quiche/quiche/spdy/core/spdy_frame_builder.cc
807
- third_party/quiche/quiche/spdy/core/spdy_frame_builder.h
808
- #third_party/quiche/quiche/spdy/core/spdy_frame_reader.cc
809
- #third_party/quiche/quiche/spdy/core/spdy_frame_reader.h
810
- third_party/quiche/quiche/spdy/core/spdy_framer.cc
811
- third_party/quiche/quiche/spdy/core/spdy_framer.h
812
- third_party/quiche/quiche/spdy/core/spdy_headers_handler_interface.h
813
- third_party/quiche/quiche/spdy/core/spdy_intrusive_list.h
814
- third_party/quiche/quiche/spdy/core/spdy_no_op_visitor.cc
815
- third_party/quiche/quiche/spdy/core/spdy_no_op_visitor.h
816
- third_party/quiche/quiche/spdy/core/spdy_pinnable_buffer_piece.cc
817
- third_party/quiche/quiche/spdy/core/spdy_pinnable_buffer_piece.h
818
- third_party/quiche/quiche/spdy/core/spdy_prefixed_buffer_reader.cc
819
- third_party/quiche/quiche/spdy/core/spdy_prefixed_buffer_reader.h
820
- third_party/quiche/quiche/spdy/core/spdy_protocol.cc
821
- third_party/quiche/quiche/spdy/core/spdy_protocol.h
822
- third_party/quiche/quiche/spdy/core/spdy_simple_arena.cc
823
- third_party/quiche/quiche/spdy/core/spdy_simple_arena.h
824
- third_party/quiche/quiche/spdy/core/zero_copy_output_buffer.h
825
- )
826
-
827
- IF(APPLE OR WIN32)
828
- target_sources(gquiche PRIVATE third_party/googleurl/url/url_idna_ascii_only.cc)
829
- ELSE()
830
- target_sources(gquiche PRIVATE third_party/googleurl/url/url_idna_icu.cc)
831
- ENDIF()
832
-
833
- FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche PROTOMODEL_PATH)
834
- FILE(TO_NATIVE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche PROTOBINDING_PATH)
835
-
836
- IF (WIN32)
837
- target_sources(gquiche PRIVATE third_party/googleurl/base/strings/string_util_win.cc
838
- third_party/googleurl/base/strings/string_util_win.h)
839
-
840
- target_compile_definitions(crypto PRIVATE strdup=_strdup)
841
- target_compile_definitions(gquiche PRIVATE _WINSOCK_DEPRECATED_NO_WARNINGS)
842
- ELSE(WIN32)
843
- IF(APPLE)
844
- ELSE(APPLE)
845
- target_link_libraries(gquiche -static-libgcc -static-libstdc++)
846
- ENDIF(APPLE)
847
- ENDIF(WIN32)
848
-
849
-
850
-
851
- add_custom_command(
852
- OUTPUT
853
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/cached_network_parameters.pb.h
854
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/crypto_server_config.pb.h
855
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/source_address_token.pb.h
856
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/cached_network_parameters.pb.cc
857
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/crypto_server_config.pb.cc
858
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/source_address_token.pb.cc
859
- DEPENDS protobuf::protoc ${filename} ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/cached_network_parameters.proto
860
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/crypto_server_config.proto
861
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/source_address_token.proto
862
- COMMAND protobuf::protoc --proto_path=${PROTOMODEL_PATH} --cpp_out=${PROTOBINDING_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/cached_network_parameters.proto
863
- COMMAND protobuf::protoc --proto_path=${PROTOMODEL_PATH} --cpp_out=${PROTOBINDING_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/crypto_server_config.proto
864
- COMMAND protobuf::protoc --proto_path=${PROTOMODEL_PATH} --cpp_out=${PROTOBINDING_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/source_address_token.proto
865
- )
866
-
867
- target_sources(gquiche PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/cached_network_parameters.pb.h
868
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/crypto_server_config.pb.h
869
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/source_address_token.pb.h
870
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/cached_network_parameters.pb.cc
871
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/crypto_server_config.pb.cc
872
- ${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche/quiche/quic/core/proto/source_address_token.pb.cc)
873
-
874
-
875
- #set(Protobuf_IMPORT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche")
876
-
877
- #protobuf_generate(
878
- # TARGET
879
- # gquiche
880
- # LANGUAGE
881
- # cpp
882
- # GENERATE_EXTENSIONS
883
- # .pb.h
884
- # .pb.cc
885
- # OUT_VAR PROTO_SRCS
886
- # IMPORT_DIRS
887
- # "${CMAKE_CURRENT_SOURCE_DIR}/third_party/quiche"
888
- # PROTOC_OUT_DIR
889
- # ${CMAKE_CURRENT_SOURCE_DIR}
890
- # PROTOS
891
- # quic/core/proto/cached_network_parameters.proto
892
- # quic/core/proto/crypto_server_config.proto
893
- # quic/core/proto/source_address_token.proto
894
- #)
895
-
896
- #target_sources(gquiche PRIVATE ${PROTO_SRCS})
897
-
898
- set_property(TARGET gquiche PROPERTY CXX_STANDARD 17)
899
-
900
- target_include_directories(gquiche
901
- PUBLIC platform
902
- PUBLIC third_party/quiche
903
- PUBLIC third_party/boringssl/src/include
904
- PUBLIC third_party/abseil-cpp
905
- PUBLIC third_party/googleurl
906
- PUBLIC third_party/libevent/include
907
- PUBLIC ${CMAKE_CURRENT_BINARY_DIR}/third_party/libevent/include
908
- PUBLIC .
909
- PUBLIC ${Protobuf_INCLUDE_DIRS}
910
- PUBLIC ${CMAKE_CURRENT_BINARY_DIR}
911
- PUBLIC ${CMAKE_JS_INC}
912
- )
913
-
914
- target_include_directories(crypto PUBLIC
915
- $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/third_party/boringssl/src/include>
916
- )
917
-
918
- target_link_libraries(gquiche
919
- absl::core_headers
920
- absl::log_severity
921
- absl::flags
922
- absl::flags_usage
923
- absl::flags_parse
924
- absl::absl_check
925
- absl::absl_log
926
- absl::log_flags
927
- absl::log_initialize
928
- absl::int128
929
- absl::strings
930
- absl::str_format
931
- absl::flat_hash_map
932
- absl::any
933
- absl::synchronization
934
- absl::time
935
- absl::status
936
- absl::statusor
937
- absl::cleanup
938
- protobuf::libprotobuf
939
- ssl
940
- zlibstatic
941
- crypto
942
- event_core
943
- )
944
-
945
-
946
- add_definitions(-DNAPI_VERSION=${napi_build_version})
947
-
948
- if(MSVC AND CMAKE_JS_NODELIB_DEF AND CMAKE_JS_NODELIB_TARGET)
949
- # Generate node.lib
950
- execute_process(COMMAND ${CMAKE_AR} /def:${CMAKE_JS_NODELIB_DEF} /out:${CMAKE_JS_NODELIB_TARGET} ${CMAKE_STATIC_LINKER_FLAGS})
951
- endif()
952
-
953
-
954
-
955
-
956
- # google quiche build parameters end
957
-
958
- #include_directories(${CMAKE_JS_INC})
959
- file(GLOB SOURCE_FILES "src/*.cc" "src/*.h")
960
- add_library(${PROJECT_NAME} SHARED ${SOURCE_FILES} ${CMAKE_JS_SRC})
961
- set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "" SUFFIX ".node")
962
- set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 17)
963
- target_include_directories(${PROJECT_NAME}
964
- PUBLIC third_party/boringssl/src/include
965
- PUBLIC ${CMAKE_JS_INC})
966
- target_link_libraries(${PROJECT_NAME} gquiche ssl zlibstatic crypto ${CMAKE_JS_LIB} )
967
- set_target_properties(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX)
968
- IF (WIN32)
969
- # place for custum window stuff
970
- ELSE(WIN32)
971
- IF(APPLE)
972
- ELSE(APPLE)
973
- target_link_libraries(${PROJECT_NAME} -static-libgcc -static-libstdc++)
974
- ENDIF(APPLE)
975
- ENDIF(WIN32)
976
-
977
- execute_process(COMMAND node -p "require('node-addon-api').include"
978
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
979
- OUTPUT_VARIABLE NODE_ADDON_API_DIR
980
- )
981
- string(REPLACE "\n" "" NODE_ADDON_API_DIR ${NODE_ADDON_API_DIR})
982
- string(REPLACE "\"" "" NODE_ADDON_API_DIR ${NODE_ADDON_API_DIR})
983
- target_include_directories(${PROJECT_NAME}
984
- PRIVATE ${NODE_ADDON_API_DIR})
985
-
986
-
987
- #add_definitions(-DNAPI_VERSION=3)
988
-
989
-
990
-
991
-