Changes in uspace/lib/http/src/request.c [b7fd2a0:1569a9b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/http/src/request.c
rb7fd2a0 r1569a9b 90 90 } 91 91 92 errno_t http_request_format(http_request_t *req, char **out_buf,92 int http_request_format(http_request_t *req, char **out_buf, 93 93 size_t *out_buf_size) 94 94 { … … 141 141 } 142 142 143 errno_t http_send_request(http_t *http, http_request_t *req)143 int http_send_request(http_t *http, http_request_t *req) 144 144 { 145 145 char *buf = NULL; 146 146 size_t buf_size = 0; 147 147 148 errno_t rc = http_request_format(req, &buf, &buf_size);148 int rc = http_request_format(req, &buf, &buf_size); 149 149 if (rc != EOK) 150 150 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.