| 536 | } |
| 537 | |
| 538 | inline static void |
| 539 | update_current_info(HttpTransact::CurrentInfo *into, HttpTransact::ConnectionAttributes *from, |
| 540 | ResolveInfo::UpstreamResolveStyle who, bool clear_retry_attempts) |
| 541 | { |
| 542 | into->request_to = who; |
| 543 | into->server = from; |
| 544 | if (clear_retry_attempts) { |
| 545 | into->retry_attempts.clear(); |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | inline static void |
| 550 | update_dns_info(ResolveInfo *dns, HttpTransact::CurrentInfo *from) |
no test coverage detected