1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-08-08 09:42:06 +03:00

cut calls to legacy no-op folly::ssl::init

Summary: The current requirement is openssl >= v1.1.0, which automatically initializes itself. Given this requirement, the folly routines to initialize openssl are now no-ops and legacy. Cut calls to them.

Reviewed By: kvtsoy

Differential Revision: D55195171

fbshipit-source-id: 914641dbcd818f0911b8fbc894f1d571d305f851
This commit is contained in:
Yedidya Feldblum
2024-03-25 15:53:56 -07:00
committed by Facebook GitHub Bot
parent 70e6ffdd7d
commit 7b006d8fea
6 changed files with 0 additions and 9 deletions

View File

@@ -44,7 +44,6 @@ class QuicStreamAsyncTransportTest : public Test {
clientQuicEvb_ = std::make_shared<FollyQuicEventBase>(&clientEvb_);
}
void SetUp() override {
folly::ssl::init();
createServer();
connect();
}