@@ -247,7 +247,6 @@ const kPendingRequestCalls = Symbol('kPendingRequestCalls');
|
247 | 247 | const kProceed = Symbol('proceed'); |
248 | 248 | const kRemoteSettings = Symbol('remote-settings'); |
249 | 249 | const kRequestAsyncResource = Symbol('requestAsyncResource'); |
250 | | -const kSelectPadding = Symbol('select-padding'); |
251 | 250 | const kSentHeaders = Symbol('sent-headers'); |
252 | 251 | const kSentTrailers = Symbol('sent-trailers'); |
253 | 252 | const kServer = Symbol('server'); |
@@ -1100,8 +1099,6 @@ function setupHandle(socket, type, options) {
|
1100 | 1099 | const handle = new binding.Http2Session(type); |
1101 | 1100 | handle[kOwner] = this; |
1102 | 1101 | |
1103 | | -if (typeof options.selectPadding === 'function') |
1104 | | -this[kSelectPadding] = options.selectPadding; |
1105 | 1102 | handle.consume(socket._handle); |
1106 | 1103 | handle.ongracefulclosecomplete = this[kMaybeDestroy].bind(this, null); |
1107 | 1104 | |
|