@@ -283,7 +283,6 @@ Local<FunctionTemplate> SecureContext::GetConstructorTemplate(
283283 env->SetProtoMethod (tmpl, " close" , Close);
284284 env->SetProtoMethod (tmpl, " loadPKCS12" , LoadPKCS12);
285285 env->SetProtoMethod (tmpl, " setTicketKeys" , SetTicketKeys);
286- env->SetProtoMethod (tmpl, " setFreeListLength" , SetFreeListLength);
287286 env->SetProtoMethod (tmpl, " enableTicketKeyCallback" ,
288287 EnableTicketKeyCallback);
289288
@@ -363,7 +362,6 @@ void SecureContext::RegisterExternalReferences(
363362 registry->Register (Close);
364363 registry->Register (LoadPKCS12);
365364 registry->Register (SetTicketKeys);
366- registry->Register (SetFreeListLength);
367365 registry->Register (EnableTicketKeyCallback);
368366 registry->Register (GetTicketKeys);
369367 registry->Register (GetCertificate<true >);
@@ -1119,9 +1117,6 @@ void SecureContext::SetTicketKeys(const FunctionCallbackInfo<Value>& args) {
11191117#endif // !def(OPENSSL_NO_TLSEXT) && def(SSL_CTX_get_tlsext_ticket_keys)
11201118}
11211119
1122- void SecureContext::SetFreeListLength (const FunctionCallbackInfo<Value>& args) {
1123- }
1124-
11251120// Currently, EnableTicketKeyCallback and TicketKeyCallback are only present for
11261121// the regression test in test/parallel/test-https-resume-after-renew.js.
11271122void SecureContext::EnableTicketKeyCallback (
0 commit comments