| 7813 | } |
| 7814 | |
| 7815 | TSReturnCode |
| 7816 | TSPluginDescriptorAccept(TSCont contp) |
| 7817 | { |
| 7818 | Action *action = nullptr; |
| 7819 | |
| 7820 | HttpProxyPort::Group &proxy_ports = HttpProxyPort::global(); |
| 7821 | for (auto &port : proxy_ports) { |
| 7822 | if (port.isPlugin()) { |
| 7823 | NetProcessor::AcceptOptions net(make_net_accept_options(&port, -1 /* nthreads */)); |
| 7824 | action = netProcessor.main_accept(reinterpret_cast<INKContInternal *>(contp), port.m_fd, net); |
| 7825 | } |
| 7826 | } |
| 7827 | return action ? TS_SUCCESS : TS_ERROR; |
| 7828 | } |
| 7829 | |
| 7830 | int |
| 7831 | TSHttpTxnBackgroundFillStarted(TSHttpTxn txnp) |
nothing calls this directly
no test coverage detected