(s, protocol, param1, param2)
| 223 | s.write(SSLAlert.packetize(this, 0, SSLAlert.close_notify)); |
| 224 | } |
| 225 | doProtocol(s, protocol, param1, param2) { |
| 226 | this.startTrace("packetize"); |
| 227 | let packet = protocol.packetize(this, param1, param2); |
| 228 | if (packet) |
| 229 | s.write(packet); |
| 230 | } |
| 231 | readPacket(s, available) { |
| 232 | let packetBuffer = this.packetBuffer; |
| 233 | if (packetBuffer.length < 5) { |
no test coverage detected