diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-05-05 17:08:21 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-13 08:17:09 +0200 |
commit | ae4adae954c958f1e3b45e6759fec6095137b23c (patch) | |
tree | a1c13daf53adb8019bfa4c51c9e69f8c910db94e /lib/urldata.h | |
parent | 52dfab65d6822d1281bb62ebc5c46cd2b7501487 (diff) | |
download | curl-ae4adae954c958f1e3b45e6759fec6095137b23c.tar.gz |
doh: CURL_DISABLE_DOH
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 608b675df..af745f9d1 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -604,7 +604,9 @@ struct SingleRequest { char *upload_fromhere; void *protop; /* Allocated protocol-specific data. Each protocol handler makes sure this points to data it needs. */ +#ifndef CURL_DISABLE_DOH struct dohdata doh; /* DoH specific data for this request */ +#endif bit header:1; /* incoming data has HTTP header */ bit content_range:1; /* set TRUE if Content-Range: was found */ bit upload_done:1; /* set to TRUE when doing chunked transfer-encoding |