(payloadSize, force)
| 214 | cleanup() {} |
| 215 | |
| 216 | alloc(payloadSize, force) { |
| 217 | if (this._protocol._kexinit === undefined || force) |
| 218 | return this._protocol._cipher.allocPacket(payloadSize); |
| 219 | return Buffer.allocUnsafe(payloadSize); |
| 220 | } |
| 221 | |
| 222 | finalize(packet, force) { |
| 223 | return packet; |
no test coverage detected