HandshakeError describes an error with the handshake from the peer.
| 16 | |
| 17 | // HandshakeError describes an error with the handshake from the peer. |
| 18 | type HandshakeError struct { |
| 19 | message string |
| 20 | } |
| 21 | |
| 22 | func (e HandshakeError) Error() string { return e.message } |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected