| 1623 | } |
| 1624 | |
| 1625 | type handshakeMessageWithOriginalBytes interface { |
| 1626 | handshakeMessage |
| 1627 | |
| 1628 | // originalBytes should return the original bytes that were passed to |
| 1629 | // unmarshal to create the message. If the message was not produced by |
| 1630 | // unmarshal, it should return nil. |
| 1631 | originalBytes() []byte |
| 1632 | } |
| 1633 | |
| 1634 | // lruSessionCache is a ClientSessionCache implementation that uses an LRU |
| 1635 | // caching strategy. |
no outgoing calls
no test coverage detected
searching dependent graphs…