| 237 | } |
| 238 | |
| 239 | ink_hrtime |
| 240 | HttpSM::get_server_connect_timeout() |
| 241 | { |
| 242 | ink_hrtime retval = 0; |
| 243 | if (t_state.api_txn_connect_timeout_value != -1) { |
| 244 | retval = HRTIME_MSECONDS(t_state.api_txn_connect_timeout_value); |
| 245 | } else { |
| 246 | retval = HRTIME_SECONDS(t_state.txn_conf->connect_attempts_timeout); |
| 247 | } |
| 248 | return retval; |
| 249 | } |
| 250 | |
| 251 | HttpSM::HttpSM() : Continuation(nullptr), vc_table(this) {} |
| 252 |
no outgoing calls
no test coverage detected