(session, type, fragment)
| 58 | return this.tlsCipherText.unpacketize(session, new SSLStream(buf)); // tail call optimization |
| 59 | }, |
| 60 | packetize(session, type, fragment) { |
| 61 | session.traceProtocol(this); |
| 62 | return this.tlsPlainText.packetize(session, type, fragment); |
| 63 | }, |
| 64 | |
| 65 | tlsPlainText: { |
| 66 | name: "tlsPlainText", |
nothing calls this directly
no test coverage detected