We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84dbe6a commit 615c63eCopy full SHA for 615c63e
src/quic/tlscontext.cc
@@ -36,11 +36,14 @@ const TLSContext::Options TLSContext::Options::kDefault = {};
36
37
namespace {
38
39
-// One time initialization
40
-auto _ = []() {
41
- CHECK_EQ(ngtcp2_crypto_quictls_init(), 0);
42
- return 0;
43
-}();
+// TODO(@jasnell): One time initialization. ngtcp2 says this is optional but
+// highly recommended to deal with some perf regression. Unfortunately doing
+// this breaks some existing tests and we need to understand the potential
+// impact of calling this.
+// auto _ = []() {
44
+// CHECK_EQ(ngtcp2_crypto_quictls_init(), 0);
45
+// return 0;
46
+// }();
47
48
constexpr size_t kMaxAlpnLen = 255;
49
0 commit comments