Context returns the context of the handshake that is in progress. This context is a child of the context passed to HandshakeContext, if any, and is canceled when the handshake concludes.
()
| 450 | // This context is a child of the context passed to HandshakeContext, |
| 451 | // if any, and is canceled when the handshake concludes. |
| 452 | func (c *ClientHelloInfo) Context() context.Context { |
| 453 | return c.ctx |
| 454 | } |
| 455 | |
| 456 | // CertificateRequestInfo contains information from a server's |
| 457 | // CertificateRequest message, which is used to demand a certificate and proof |
nothing calls this directly
no outgoing calls
no test coverage detected