Lines Matching refs:index
48 function makeConnection(index) {
53 if (index + 1 < N) {
54 makeConnection(index + 1);
58 console.error(`closed ${index}`);
63 server.maxConnections <= index,
64 `${index} should not have been one of the first closed connections`
77 if (index < server.maxConnections) {
79 `${index} didn't get data, but should have`);
82 `${index} got data, but shouldn't have`);
100 console.error(`error ${index}: ${e}`);