()
| 678 | } |
| 679 | |
| 680 | func (h *HeaderTransport) CloseIdleConnections() { |
| 681 | type closeIdler interface { |
| 682 | CloseIdleConnections() |
| 683 | } |
| 684 | if tr, ok := h.Transport.(closeIdler); ok { |
| 685 | tr.CloseIdleConnections() |
| 686 | } |
| 687 | } |
| 688 | |
| 689 | // ClientOptions |
| 690 |
nothing calls this directly
no test coverage detected