release returns this connection back to the client's free pool
()
| 193 | |
| 194 | // release returns this connection back to the client's free pool |
| 195 | func (cn *conn) release() { |
| 196 | cn.c.putFreeConn(cn.addr, cn) |
| 197 | } |
| 198 | |
| 199 | func (cn *conn) extendDeadline() { |
| 200 | cn.nc.SetDeadline(time.Now().Add(cn.c.netTimeout())) |
no test coverage detected