(len, copy=true)
| 150 | } |
| 151 | |
| 152 | rQpeekBytes(len, copy=true) { |
| 153 | if (copy) { |
| 154 | return this._rQ.slice(this._rQi, this._rQi + len); |
| 155 | } else { |
| 156 | return this._rQ.subarray(this._rQi, this._rQi + len); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | // Check to see if we must wait for 'num' bytes (default to FBU.bytes) |
| 161 | // to be available in the receive queue. Return true if we need to |
no test coverage detected