From 51ec21cb17ac70b671a83c8f4e65e560d2fcc78e Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Sat, 26 Jan 2019 22:45:58 +0800 Subject: [PATCH] src: remove unused field in node_http2.h Signed-off-by: gengjiawen PR-URL: https://github.com/nodejs/node/pull/25727 Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- src/node_http2.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/node_http2.h b/src/node_http2.h index 4b38f867f77434..a1490fa4cb7c4b 100644 --- a/src/node_http2.h +++ b/src/node_http2.h @@ -336,9 +336,6 @@ enum session_state_flags { SESSION_STATE_SENDING = 0x10, }; -// This allows for 4 default-sized frames with their frame headers -static const size_t kAllocBufferSize = 4 * (16384 + 9); - typedef uint32_t(*get_setting)(nghttp2_session* session, nghttp2_settings_id id);