Home
last modified time | relevance | path

Searched refs:connectionListener (Results 1 – 5 of 5) sorted by relevance

/third_party/node/lib/
Dnet.js217 function createServer(options, connectionListener) { argument
218 return new Server(options, connectionListener);
1652 function Server(options, connectionListener) { argument
1654 return new Server(options, connectionListener);
1659 connectionListener = options;
1661 this.on('connection', connectionListener);
1665 if (typeof connectionListener === 'function') {
1666 this.on('connection', connectionListener);
D_http_server.js535 this.on('connection', connectionListener);
617 function connectionListener(socket) { function
1180 _connectionListener: connectionListener,
/third_party/node/lib/internal/http2/
Dcore.js3034 function connectionListener(socket) { function
3148 super(options, connectionListener);
3176 super(options, connectionListener);
/third_party/node/doc/api/
Dnet.md233 ### `new net.Server([options][, connectionListener])`
236 [`net.createServer([options][, connectionListener])`][`net.createServer()`].
237 * `connectionListener` {Function} Automatically set as a listener for the
1534 ## `net.createServer([options][, connectionListener])`
1568 * `connectionListener` {Function} Automatically set as a listener for the
/third_party/node/doc/changelogs/
DCHANGELOG_V8.md2392 …tps://github.com/nodejs/node/commit/ae3836a58f)] - **test**: http2 connectionListener reject clien…