| 1226 | } |
| 1227 | |
| 1228 | static int http_proxy_next(HTTP_CLIENT *http_client) |
| 1229 | { |
| 1230 | HTTP_CLIENT_REQ *req = acl_fifo_head(&http_client->req_list); |
| 1231 | |
| 1232 | if (req) { |
| 1233 | if (!(req->flag & CLIENT_READ_WAIT)) |
| 1234 | handle_one(http_client, req); |
| 1235 | } else { |
| 1236 | http_proxy_req_get(http_client); |
| 1237 | } |
| 1238 | |
| 1239 | return (0); |
| 1240 | } |
| 1241 | |
| 1242 | /* ������Ӧ�����ͻ���ʧ��ʱ�Ļص����� */ |
| 1243 |
no test coverage detected
searching dependent graphs…