conn is a connection to a server.
| 185 | |
| 186 | // conn is a connection to a server. |
| 187 | type conn struct { |
| 188 | nc net.Conn |
| 189 | rw *bufio.ReadWriter |
| 190 | addr net.Addr |
| 191 | c *Client |
| 192 | } |
| 193 | |
| 194 | // release returns this connection back to the client's free pool |
| 195 | func (cn *conn) release() { |
nothing calls this directly
no outgoing calls
no test coverage detected