Changeset 46577995 in mainline for uspace/lib/http/src/request.c
- Timestamp:
- 2018-01-04T20:50:52Z (8 years ago)
- Children:
- e211ea04
- Parents:
- facacc71
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- File:
-
- 1 edited
-
uspace/lib/http/src/request.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/http/src/request.c
rfacacc71 r46577995 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.
