| 5342 | } |
| 5343 | |
| 5344 | void |
| 5345 | HttpSM::open_prewarmed_connection() |
| 5346 | { |
| 5347 | NetVConnection *netvc = _prewarm_sm->move_netvc(); |
| 5348 | ink_release_assert(_prewarm_sm->handler == &PreWarmSM::state_closed); |
| 5349 | |
| 5350 | SMDbg(dbg_ctl_http_ss, "using pre-warmed tunnel netvc=%p", netvc); |
| 5351 | |
| 5352 | t_state.current.retry_attempts.clear(); |
| 5353 | |
| 5354 | ink_release_assert(default_handler == HttpSM::default_handler); |
| 5355 | handleEvent(NET_EVENT_OPEN, netvc); |
| 5356 | } |
| 5357 | |
| 5358 | ////////////////////////////////////////////////////////////////////////// |
| 5359 | // |
nothing calls this directly
no test coverage detected