diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-02-04 15:04:18 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-02-04 23:08:07 +0100 |
commit | 457e864f5e7c8a5614a62903c57a6909a3256cb7 (patch) | |
tree | 1becce25ba8abe6d1b94cb1170e27f5f89406920 /lib/urldata.h | |
parent | e32601e13ab258a4370b46f8c5d360eab9d5ee8f (diff) | |
download | curl-457e864f5e7c8a5614a62903c57a6909a3256cb7.tar.gz |
urldata: fix build without HTTP and MQTT
Reported-by: Joseph Chen
Fixes #6562
Closes #6563
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index f7d60b249..09a78d922 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1400,9 +1400,7 @@ struct UrlState { int stream_weight; CURLU *uh; /* URL handle for the current parsed URL */ struct urlpieces up; -#if !defined(CURL_DISABLE_HTTP) || !defined(CURL_DISABLE_MQTT) Curl_HttpReq httpreq; /* what kind of HTTP request (if any) is this */ -#endif #ifndef CURL_DISABLE_HTTP size_t trailers_bytes_sent; struct dynbuf trailers_buf; /* a buffer containing the compiled trailing @@ -1708,9 +1706,7 @@ struct UserDefined { curl_TimeCond timecondition; /* kind of time/date comparison */ curl_proxytype proxytype; /* what kind of proxy that is in use */ time_t timevalue; /* what time to compare with */ -#if !defined(CURL_DISABLE_HTTP) || !defined(CURL_DISABLE_MQTT) Curl_HttpReq method; /* what kind of HTTP request (if any) is this */ -#endif long httpversion; /* when non-zero, a specific HTTP version requested to be used in the library's request(s) */ struct ssl_config_data ssl; /* user defined SSL stuff */ |