mirror of
https://github.com/curl/curl.git
synced 2026-07-24 15:47:16 +03:00
lib: rename struct 'http_req' to 'httpreq'
Because FreeBSD 14 kidnapped the name. Ref: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=271526 Fixes #11163 Closes #11164
This commit is contained in:
parent
36e998b18b
commit
54ce13d3ff
4 changed files with 17 additions and 17 deletions
|
|
@ -36,7 +36,7 @@
|
|||
#define H1_PARSE_DEFAULT_MAX_LINE_LEN (8 * 1024)
|
||||
|
||||
struct h1_req_parser {
|
||||
struct http_req *req;
|
||||
struct httpreq *req;
|
||||
struct bufq scratch;
|
||||
size_t scratch_skip;
|
||||
const char *line;
|
||||
|
|
@ -53,7 +53,7 @@ ssize_t Curl_h1_req_parse_read(struct h1_req_parser *parser,
|
|||
const char *scheme_default, int options,
|
||||
CURLcode *err);
|
||||
|
||||
CURLcode Curl_h1_req_dprint(const struct http_req *req,
|
||||
CURLcode Curl_h1_req_dprint(const struct httpreq *req,
|
||||
struct dynbuf *dbuf);
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue