CloseIdleConnections closes idle connections on the underlying fasthttp transport when supported.
()
| 99 | |
| 100 | // CloseIdleConnections closes idle connections on the underlying fasthttp transport when supported. |
| 101 | func (c *Client) CloseIdleConnections() { |
| 102 | c.transport.CloseIdleConnections() |
| 103 | } |
| 104 | |
| 105 | func (c *Client) currentTLSConfig() *tls.Config { |
| 106 | return c.transport.TLSConfig() |