Lines Matching refs:todo
15 let todo = [];
23 todo = [];
24 todo.push('GET / HTTP/1.1');
25 todo.push('Host: localhost');
26 todo.push('Connection: keep-alive');
27 todo.push('Accept: text/html,application/xhtml+xml,' +
29 todo.push('User-Agent: Mozilla/5.0 (X11; Linux x86_64) ' +
32 todo.push('Accept-Encoding: gzip, deflate, sdch');
33 todo.push('Accept-Language: en-US,en;q=0.8');
37 todo.push(`X-Header-${i}: ${headers[i % 3]}`);
39 todo.push('');
40 todo.push('');
41 todo = todo.join('\r\n');
44 for (let i = 0; i < todo.length; i += chunksize) {
45 const cur = todo.slice(i, i + chunksize);