Skip to content

Commit

Permalink
Merge pull request #195 from fails-components/thirdpartylibtracker
Browse files Browse the repository at this point in the history
Automated update of thirdparty libraries
  • Loading branch information
martenrichter committed Sep 7, 2023
2 parents f82cfb1 + b25ba88 commit 2e34fac
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions src/http3dispatcher.cc
Expand Up @@ -43,13 +43,14 @@ std::unique_ptr<QuicSession> Http3Dispatcher::CreateQuicSession(
QuicConnectionId connection_id, const QuicSocketAddress& self_address,
const QuicSocketAddress& peer_address, absl::string_view /*alpn*/,
const ParsedQuicVersion& version,
const ParsedClientHello& /*parsed_chlo*/) {
const ParsedClientHello& /*parsed_chlo*/,
ConnectionIdGeneratorInterface& connection_id_generator) {
// The QuicServerSessionBase takes ownership of |connection| below.
QuicConnection* connection =
new QuicConnection(connection_id, self_address, peer_address, helper(),
alarm_factory(), writer(),
/* owns_writer= */ false, Perspective::IS_SERVER,
ParsedQuicVersionVector{version}, connection_id_generator());
ParsedQuicVersionVector{version}, connection_id_generator);

auto session = std::make_unique<Http3ServerSession>(
config(), GetSupportedVersions(), connection, this, session_helper(),
Expand Down
3 changes: 2 additions & 1 deletion src/http3dispatcher.h
Expand Up @@ -40,7 +40,8 @@ namespace quic
QuicConnectionId connection_id, const QuicSocketAddress &self_address,
const QuicSocketAddress &peer_address, absl::string_view alpn,
const ParsedQuicVersion &version,
const ParsedClientHello &parsed_chlo) override;
const ParsedClientHello &parsed_chlo,
ConnectionIdGeneratorInterface& connection_id_generator) override;

Http3ServerBackend *server_backend()
{
Expand Down
2 changes: 1 addition & 1 deletion third_party/quiche
Submodule quiche updated 36 files
+26 −21 build/source_list.bzl
+26 −21 build/source_list.gni
+26 −21 build/source_list.json
+22 −0 quiche/BUILD.bazel
+10 −1 quiche/blind_sign_auth/anonymous_tokens/cpp/client/anonymous_tokens_rsa_bssa_client.cc
+4 −1 quiche/blind_sign_auth/anonymous_tokens/cpp/client/anonymous_tokens_rsa_bssa_client_test.cc
+4 −6 quiche/blind_sign_auth/blind_sign_auth.cc
+1 −2 quiche/blind_sign_auth/blind_sign_auth.h
+12 −0 quiche/blind_sign_auth/blind_sign_auth_protos.h
+2 −7 quiche/blind_sign_auth/blind_sign_auth_test.cc
+4 −6 quiche/blind_sign_auth/proto/auth_and_sign.proto
+1 −1 quiche/http2/adapter/nghttp2.h
+2 −1 quiche/http2/adapter/nghttp2_test.cc
+115 −0 quiche/http2/adapter/oghttp2_adapter_test.cc
+2 −0 quiche/quic/core/crypto/crypto_protocol.h
+2 −2 quiche/quic/core/http/end_to_end_test.cc
+1 −1 quiche/quic/core/http/quic_spdy_server_stream_base.cc
+4 −1 quiche/quic/core/quic_connection.cc
+3 −0 quiche/quic/core/quic_connection.h
+13 −3 quiche/quic/core/quic_connection_test.cc
+9 −2 quiche/quic/core/quic_dispatcher.cc
+3 −3 quiche/quic/core/quic_dispatcher.h
+115 −82 quiche/quic/core/quic_dispatcher_test.cc
+3 −0 quiche/quic/core/quic_error_codes.cc
+4 −1 quiche/quic/core/quic_error_codes.h
+2 −0 quiche/quic/core/quic_flags_list.h
+6 −3 quiche/quic/masque/masque_dispatcher.cc
+7 −3 quiche/quic/masque/masque_dispatcher.h
+7 −1 quiche/quic/qbone/qbone_client.cc
+10 −0 quiche/quic/qbone/qbone_client.h
+5 −2 quiche/quic/qbone/qbone_client_test.cc
+5 −0 quiche/quic/test_tools/quic_connection_peer.cc
+2 −0 quiche/quic/test_tools/quic_connection_peer.h
+6 −2 quiche/quic/test_tools/quic_test_server.cc
+6 −3 quiche/quic/tools/quic_simple_dispatcher.cc
+5 −2 quiche/quic/tools/quic_simple_dispatcher.h

0 comments on commit 2e34fac

Please sign in to comment.