| 680 | } |
| 681 | |
| 682 | int http_aclient::http_res_hdr_cllback(int status, void* ctx) |
| 683 | { |
| 684 | http_aclient* me = (http_aclient*) ctx; |
| 685 | |
| 686 | return me->handle_res_hdr(status) ? 0 : -1; |
| 687 | } |
| 688 | |
| 689 | void http_aclient::send_request(const void* body, size_t len) |
| 690 | { |
nothing calls this directly
no test coverage detected