diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-01-31 08:10:07 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-04-04 17:03:43 +0200 |
commit | ac887eedbc17a0d78b11ff467858c76a5127d1f4 (patch) | |
tree | 33f12aad12cd5eb43e1a5d069e1ecb2747e7e864 /lib/urldata.h | |
parent | 42937f87e65554ec4b887a5bd0b34abdbf2e0977 (diff) |
CURLOPT_PROXYHEADER: set headers for proxy-only
Includes docs and new test cases: 1525, 1526 and 1527
Co-written-by: Vijay Panghal
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index b24562a4d..fd13eb981 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1465,6 +1465,7 @@ struct UserDefined { download */ curl_off_t set_resume_from; /* continue [ftp] transfer from here */ struct curl_slist *headers; /* linked list of extra headers */ + struct curl_slist *proxyheaders; /* linked list of extra CONNECT headers */ struct curl_httppost *httppost; /* linked list of POST data */ bool cookiesession; /* new cookie session? */ bool crlf; /* convert crlf on ftp upload(?) */ |