File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 88
99#pragma once
1010
11- #include < fizz/backend/openssl/OpenSSLFactory.h>
1211#include < fizz/client/PskCache.h>
1312#include < fizz/client/PskSerializationUtils.h>
13+ #include < fizz/protocol/DefaultFactory.h>
1414#include < fizz/protocol/Factory.h>
1515#include < wangle/client/persistence/FilePersistentCache.h>
1616
@@ -28,7 +28,7 @@ class PersistentFizzPskCache : public fizz::client::PskCache {
2828 PersistentFizzPskCache (const std::string& filename,
2929 wangle::PersistentCacheConfig config,
3030 std::unique_ptr<fizz::Factory> factory =
31- std::make_unique<fizz::openssl::OpenSSLFactory >())
31+ std::make_unique<::fizz::DefaultFactory >())
3232 : cache_(filename, std::move(config)), factory_(std::move(factory)) {
3333 }
3434
Original file line number Diff line number Diff line change 1111#include < proxygen/lib/transport/PersistentFizzPskCache.h>
1212
1313#include < fizz/client/PskSerializationUtils.h>
14+ #include < fizz/protocol/DefaultFactory.h>
1415#include < folly/Optional.h>
1516#include < folly/json/dynamic.h>
1617#include < quic/fizz/client/handshake/QuicPskCache.h>
@@ -35,7 +36,7 @@ class PersistentQuicPskCache : public quic::QuicPskCache {
3536 PersistentQuicPskCache (const std::string& filename,
3637 wangle::PersistentCacheConfig config,
3738 std::unique_ptr<fizz::Factory> factory =
38- std::make_unique<fizz::openssl::OpenSSLFactory >());
39+ std::make_unique<::fizz::DefaultFactory >());
3940
4041 void setMaxPskUses (size_t maxUses);
4142
You can’t perform that action at this time.
0 commit comments