(s)
| 228 | return Math.max(0, s.writable - 32); |
| 229 | } |
| 230 | close(s) { |
| 231 | this.startTrace("packetize"); |
| 232 | const packet = SSLAlert.packetize(this, 0, SSLAlert.close_notify); |
| 233 | s.writable = s.write(packet); |
| 234 | } |
| 235 | doProtocol(s, protocol, param1, param2) { |
| 236 | this.startTrace("packetize"); |
| 237 | const packet = protocol.packetize(this, param1, param2); |
nothing calls this directly
no test coverage detected