NetConn returns the underlying connection that is wrapped by c. Note that writing to or reading from this connection directly will corrupt the TLS session.
()
| 181 | // Note that writing to or reading from this connection directly will corrupt the |
| 182 | // TLS session. |
| 183 | func (c *Conn) NetConn() net.Conn { |
| 184 | return c.conn |
| 185 | } |
| 186 | |
| 187 | // A halfConn represents one direction of the record layer |
| 188 | // connection, either sending or receiving. |
nothing calls this directly
no outgoing calls
no test coverage detected