(cb)
| 14 | // Verify that we cannot receive more than 16KB of headers. |
| 15 | |
| 16 | function once(cb) { |
| 17 | let called = false; |
| 18 | return () => { |
| 19 | if (!called) { |
| 20 | called = true; |
| 21 | cb(); |
| 22 | } |
| 23 | }; |
| 24 | } |
| 25 | |
| 26 | function finished(client, callback) { |
| 27 | ['abort', 'error', 'end'].forEach((e) => { |
searching dependent graphs…