mirror of
https://github.com/facebookincubator/mvfst.git
synced 2025-08-08 09:42:06 +03:00
Make the QuicTransportBase -> QuicTransportBaseLite inheritance virtual
Summary: See title. Reviewed By: mjoras Differential Revision: D65688218 fbshipit-source-id: 1fcaf353f264191f411f0fd80be4cd7dbc3bb8ea
This commit is contained in:
committed by
Facebook GitHub Bot
parent
0cbb19b10e
commit
f391bdac57
@@ -232,8 +232,7 @@ class TestQuicTransport
|
||||
std::unique_ptr<QuicAsyncUDPSocket> socket,
|
||||
ConnectionSetupCallback* connSetupCb,
|
||||
ConnectionCallback* connCb)
|
||||
: QuicTransportBase(std::move(evb), std::move(socket)),
|
||||
observerContainer_(std::make_shared<SocketObserverContainer>(this)) {
|
||||
: QuicTransportBaseLite(evb, std::move(socket)), QuicTransportBase(evb, nullptr /* Initialized through the QuicTransportBaseLite constructor */), observerContainer_(std::make_shared<SocketObserverContainer>(this)) {
|
||||
auto conn = std::make_unique<QuicServerConnectionState>(
|
||||
FizzServerQuicHandshakeContext::Builder().build());
|
||||
conn->clientConnectionId = ConnectionId({10, 9, 8, 7});
|
||||
|
Reference in New Issue
Block a user