()
| 6094 | assert(this.timeoutType === TIMEOUT_BODY); |
| 6095 | if (this.timeout) { |
| 6096 | if (this.timeout.refresh) { |
| 6097 | this.timeout.refresh(); |
| 6098 | } |
| 6099 | } |
| 6100 | this.paused = false; |
| 6101 | this.execute(this.socket.read() || EMPTY_BUF); |
| 6102 | this.readMore(); |
| 6103 | } |
| 6104 | readMore() { |
| 6105 | while (!this.paused && this.ptr) { |
| 6106 | const chunk = this.socket.read(); |
| 6107 | if (chunk === null) { |