| 724 | } |
| 725 | |
| 726 | static int ui_adr_post_request(th_server_t *ts, const char *project, const char *content, |
| 727 | char *resp, size_t respsz) { |
| 728 | char body[2048]; |
| 729 | int body_len = |
| 730 | snprintf(body, sizeof(body), "{\"project\":\"%s\",\"content\":\"%s\"}", project, content); |
| 731 | if (body_len < 0 || (size_t)body_len >= sizeof(body)) |
| 732 | return 0; |
| 733 | |
| 734 | char req[2304]; |
| 735 | int req_len = snprintf(req, sizeof(req), |
| 736 | "POST /api/adr HTTP/1.1\r\n" |
| 737 | "Content-Type: application/json\r\n" |
| 738 | "Content-Length: %d\r\n\r\n%s", |
| 739 | body_len, body); |
| 740 | if (req_len < 0 || (size_t)req_len >= sizeof(req)) |
| 741 | return 0; |
| 742 | return th_http(cbm_http_server_port(ts->srv), req, resp, respsz); |
| 743 | } |
| 744 | |
| 745 | static int ui_adr_get_request(th_server_t *ts, const char *project, char *resp, size_t respsz) { |
| 746 | char req[512]; |
no test coverage detected