Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2021-01-25 21:49:03 +0300
committerJames M Snell <jasnell@gmail.com>2021-01-30 18:49:28 +0300
commitc3d6d50309a5046c98475e99c13f48a8fee12ac7 (patch)
treec429781c87603dcd4905998bbc9bd073399c2f67 /src/node_errors.h
parentf763a80ab59bbaa0fcf5f3b0519a70336ee88744 (diff)
quic: remove quic
PR-URL: https://github.com/nodejs/node/pull/37067 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'src/node_errors.h')
-rw-r--r--src/node_errors.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/node_errors.h b/src/node_errors.h
index 6158a968d27..984603c42e2 100644
--- a/src/node_errors.h
+++ b/src/node_errors.h
@@ -78,8 +78,6 @@ void OnFatalError(const char* location, const char* message);
V(ERR_WASI_NOT_STARTED, Error) \
V(ERR_WORKER_INIT_FAILED, Error) \
V(ERR_PROTO_ACCESS, Error) \
- V(ERR_QUIC_CANNOT_SET_GROUPS, Error) \
- V(ERR_QUIC_FAILURE_SETTING_SNI_CONTEXT, Error)
#define V(code, type) \
inline v8::Local<v8::Value> code(v8::Isolate* isolate, \
@@ -156,9 +154,7 @@ void OnFatalError(const char* location, const char* message);
V(ERR_WORKER_INIT_FAILED, "Worker initialization failure") \
V(ERR_PROTO_ACCESS, \
"Accessing Object.prototype.__proto__ has been " \
- "disallowed with --disable-proto=throw") \
- V(ERR_QUIC_CANNOT_SET_GROUPS, "Cannot set groups") \
- V(ERR_QUIC_FAILURE_SETTING_SNI_CONTEXT, "Failure setting SNI context")
+ "disallowed with --disable-proto=throw")
#define V(code, message) \
inline v8::Local<v8::Value> code(v8::Isolate* isolate) { \