From 319181cd47dc1d96ccddee72d118983b23b7a9b0 Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Tue, 19 Feb 2019 22:28:10 +0800 Subject: [PATCH] src: remove unimplemented method in class SSLWrap --- src/node_crypto.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/node_crypto.h b/src/node_crypto.h index 7c346a6c1435d1..9d9af1613755b4 100644 --- a/src/node_crypto.h +++ b/src/node_crypto.h @@ -279,13 +279,11 @@ class SSLWrap { static void SetSession(const v8::FunctionCallbackInfo& args); static void LoadSession(const v8::FunctionCallbackInfo& args); static void IsSessionReused(const v8::FunctionCallbackInfo& args); - static void IsInitFinished(const v8::FunctionCallbackInfo& args); static void VerifyError(const v8::FunctionCallbackInfo& args); static void GetCurrentCipher(const v8::FunctionCallbackInfo& args); static void EndParser(const v8::FunctionCallbackInfo& args); static void CertCbDone(const v8::FunctionCallbackInfo& args); static void Renegotiate(const v8::FunctionCallbackInfo& args); - static void Shutdown(const v8::FunctionCallbackInfo& args); static void GetTLSTicket(const v8::FunctionCallbackInfo& args); static void NewSessionDone(const v8::FunctionCallbackInfo& args); static void SetOCSPResponse(const v8::FunctionCallbackInfo& args);