| 6603 | } |
| 6604 | |
| 6605 | void |
| 6606 | TSFetchPages(TSFetchUrlParams_t *params) |
| 6607 | { |
| 6608 | TSFetchUrlParams_t *myparams = params; |
| 6609 | |
| 6610 | while (myparams != nullptr) { |
| 6611 | FetchSM *fetch_sm = FetchSMAllocator.alloc(); |
| 6612 | sockaddr *addr = ats_ip_sa_cast(&myparams->ip); |
| 6613 | |
| 6614 | fetch_sm->init(reinterpret_cast<Continuation *>(myparams->contp), myparams->options, myparams->events, myparams->request, |
| 6615 | myparams->request_len, addr); |
| 6616 | fetch_sm->httpConnect(); |
| 6617 | myparams = myparams->next; |
| 6618 | } |
| 6619 | } |
| 6620 | |
| 6621 | TSFetchSM |
| 6622 | TSFetchUrl(const char *headers, int request_len, sockaddr const *ip, TSCont contp, TSFetchWakeUpOptions callback_options, |
nothing calls this directly
no test coverage detected