Changeset b7fd2a0 in mainline for uspace/lib/http/src/request.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/http/src/request.c
r36f0738 rb7fd2a0 90 90 } 91 91 92 int http_request_format(http_request_t *req, char **out_buf,92 errno_t http_request_format(http_request_t *req, char **out_buf, 93 93 size_t *out_buf_size) 94 94 { … … 141 141 } 142 142 143 int http_send_request(http_t *http, http_request_t *req)143 errno_t 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 int rc = http_request_format(req, &buf, &buf_size);148 errno_t 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.