@brief Clears the optional transport setup hook and restores default socket transport setup.
| 200 | /// later. This keeps TLS and other transport adapters outside the core Http library. |
| 201 | void setTransportSetup(Function<Result(HttpAsyncClientTransportSetup&)>&& setup) { transportSetup = move(setup); } |
| 202 | |
| 203 | /// @brief Sets an optional transport policy hook invoked after URL parsing and before DNS or socket activity. |
| 204 | /// |
| 205 | /// This hook can reject URL forms that a transport adapter cannot represent safely. It must not retain the parser. |
nothing calls this directly
no outgoing calls
no test coverage detected