Searched refs:connectionListener (Results 1 – 5 of 5) sorted by relevance
/third_party/node/lib/ |
D | net.js | 217 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.js | 535 this.on('connection', connectionListener); 617 function connectionListener(socket) { function 1180 _connectionListener: connectionListener,
|
/third_party/node/lib/internal/http2/ |
D | core.js | 3034 function connectionListener(socket) { function 3148 super(options, connectionListener); 3176 super(options, connectionListener);
|
/third_party/node/doc/api/ |
D | net.md | 233 ### `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/ |
D | CHANGELOG_V8.md | 2392 …tps://github.com/nodejs/node/commit/ae3836a58f)] - **test**: http2 connectionListener reject clien…
|