(s)
| 219 | return data.length; |
| 220 | } |
| 221 | close(s) { |
| 222 | this.startTrace("packetize"); |
| 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); |
nothing calls this directly
no test coverage detected