Home
last modified time | relevance | path

Searched refs:allowHalfOpen (Results 1 – 25 of 52) sorted by relevance

123

/third_party/node/test/parallel/
Dtest-tls-socket-allow-half-open-option.js17 const socket = new tls.TLSSocket(new net.Socket(), { allowHalfOpen: true }); property
18 assert.strictEqual(socket.allowHalfOpen, false);
25 allowHalfOpen: false, property
28 const socket = new tls.TLSSocket(duplex, { allowHalfOpen: true }); property
29 assert.strictEqual(socket.allowHalfOpen, false);
34 assert.strictEqual(socket.allowHalfOpen, false);
39 const socket = new tls.TLSSocket(undefined, { allowHalfOpen: true }); property
40 assert.strictEqual(socket.allowHalfOpen, true);
Dtest-stream-duplex-end.js11 assert.strictEqual(stream.allowHalfOpen, true);
21 allowHalfOpen: false property
23 assert.strictEqual(stream.allowHalfOpen, false);
33 allowHalfOpen: false property
35 assert.strictEqual(stream.allowHalfOpen, false);
Dtest-tls-server-parent-constructor-options.js21 assert.strictEqual(socket.allowHalfOpen, false);
25 assert.strictEqual(server.allowHalfOpen, false);
44 allowHalfOpen: true, property
48 assert.strictEqual(socket.allowHalfOpen, true);
53 assert.strictEqual(server.allowHalfOpen, true);
Dtest-http2-server-startup.js54 const server = http2.createServer({ allowHalfOpen: true }); property
57 assert.strictEqual(socket.allowHalfOpen, true);
62 assert.strictEqual(server.allowHalfOpen, true);
94 allowHalfOpen: true, property
99 assert.strictEqual(socket.allowHalfOpen, true);
104 assert.strictEqual(server.allowHalfOpen, true);
Dtest-tls-connect-allow-half-open-option.js16 assert.strictEqual(socket.allowHalfOpen, false);
20 const socket = tls.connect({ allowHalfOpen: false, lookup() {} }); property
21 assert.strictEqual(socket.allowHalfOpen, false);
51 allowHalfOpen: true, property
Dtest-net-connect-options-ipv6.js35 const server = net.createServer({ allowHalfOpen: true }, (socket) => { property
46 allowHalfOpen: true, property
Dtest-http-set-timeout-server.js144 allowHalfOpen: true, property
166 allowHalfOpen: true, property
208 allowHalfOpen: true, property
Dtest-net-connect-options-allowhalfopen.js101 const opts = { allowHalfOpen: true, host, port }; property
114 const server = net.createServer({ allowHalfOpen: true }) property
Dtest-https-set-timeout-server.js164 allowHalfOpen: true, property
187 allowHalfOpen: true, property
233 allowHalfOpen: true, property
Dtest-net-pingpong.js34 { allowHalfOpen: true }, property
68 assert.strictEqual(socket.allowHalfOpen, true);
Dtest-net-socket-no-halfopen-enforcer.js10 const socket = new Socket({ allowHalfOpen: false }); property
/third_party/node/deps/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/
D_stream_duplex.js66 this.allowHalfOpen = true;
67 if (options && options.allowHalfOpen === false)
68 this.allowHalfOpen = false;
77 if (this.allowHalfOpen || this._writableState.ended)
/third_party/node/deps/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/
D_stream_duplex.js74 this.allowHalfOpen = true;
75 if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
94 if (this.allowHalfOpen || this._writableState.ended) return;
/third_party/node/deps/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/
D_stream_duplex.js74 this.allowHalfOpen = true;
75 if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
94 if (this.allowHalfOpen || this._writableState.ended) return;
/third_party/node/deps/npm/node_modules/concat-stream/node_modules/readable-stream/lib/
D_stream_duplex.js74 this.allowHalfOpen = true;
75 if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
94 if (this.allowHalfOpen || this._writableState.ended) return;
/third_party/node/deps/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/
D_stream_duplex.js74 this.allowHalfOpen = true;
75 if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
94 if (this.allowHalfOpen || this._writableState.ended) return;
/third_party/node/deps/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/
D_stream_duplex.js74 this.allowHalfOpen = true;
75 if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
94 if (this.allowHalfOpen || this._writableState.ended) return;
/third_party/node/deps/npm/node_modules/through2/node_modules/readable-stream/lib/
D_stream_duplex.js74 this.allowHalfOpen = true;
75 if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
94 if (this.allowHalfOpen || this._writableState.ended) return;
/third_party/node/deps/npm/node_modules/duplexify/node_modules/readable-stream/lib/
D_stream_duplex.js74 this.allowHalfOpen = true;
75 if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
94 if (this.allowHalfOpen || this._writableState.ended) return;
/third_party/node/deps/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/
D_stream_duplex.js74 this.allowHalfOpen = true;
75 if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
94 if (this.allowHalfOpen || this._writableState.ended) return;
/third_party/node/deps/npm/node_modules/from2/node_modules/readable-stream/lib/
D_stream_duplex.js74 this.allowHalfOpen = true;
75 if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
94 if (this.allowHalfOpen || this._writableState.ended) return;
/third_party/node/lib/internal/streams/
Dduplex.js58 this.allowHalfOpen = true;
67 if (options.allowHalfOpen === false) {
68 this.allowHalfOpen = false;
/third_party/node/deps/npm/node_modules/readable-stream/lib/
D_stream_duplex.js62 this.allowHalfOpen = true;
68 if (options.allowHalfOpen === false) {
69 this.allowHalfOpen = false;
/third_party/node/test/sequential/
Dtest-https-server-keep-alive-timeout.js47 allowHalfOpen: true, property
70 allowHalfOpen: true, property
/third_party/node/lib/
Dnet.js305 const { allowHalfOpen } = options;
308 options.allowHalfOpen = true;
317 this.allowHalfOpen = Boolean(allowHalfOpen);
644 if (!this.allowHalfOpen) {
1216 this.allowHalfOpen = options.allowHalfOpen || false;
1562 allowHalfOpen: self.allowHalfOpen, property

123