(session, buf)
| 54 | |
| 55 | // protocols |
| 56 | unpacketize(session, buf) { |
| 57 | session.traceProtocol(this); |
| 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); |