Lines Matching refs:backlog
283 // For Server.prototype.listen(), the [...] part is [, backlog]
1770 function setupListenHandle(address, port, addressType, backlog, fd, flags) {
1771 debug('setupListenHandle', address, port, addressType, backlog, fd);
1811 // Use a backlog of 512 entries. We pass 511 to the listen() call because
1813 // which will thus give us a backlog of 512 entries.
1814 const err = this._handle.listen(backlog || 511);
1856 backlog, fd, exclusive, flags, options) {
1865 server._listen2(address, port, addressType, backlog, fd, flags);
1875 backlog,
1893 server._listen2(address, port, addressType, backlog, fd, flags);
1911 // (handle, backlog) or (path, backlog) or (port, backlog)
1913 toNumber(args.length > 2 && args[2]); // (port, host, backlog)
1917 // (handle[, backlog][, cb]) where handle is an object with a handle
1925 // (handle[, backlog][, cb]) where handle is an object with a fd
1931 // ([port][, host][, backlog][, cb]) where port is omitted,
1940 // ([port][, host][, backlog][, cb]) where port is specified
1943 let backlog;
1946 backlog = options.backlog || backlogFromArgs;
1949 lookupAndListen(this, options.port | 0, options.host, backlog,
1954 backlog, undefined, options.exclusive);
1959 // (path[, backlog][, cb]) or (options[, cb])
1963 backlog = options.backlog || backlogFromArgs;
1968 backlog,
2007 function lookupAndListen(self, port, address, backlog, exclusive, flags) {
2015 backlog, undefined, exclusive, flags);