char *ptr;
char *request;
Curl_HttpReq httpreq = data->set.httpreq;
+ char *addcookies = NULL;
if(!conn->proto.http) {
/* Only allocate this struct if we don't already have it! */
else
conn->allocptr.ref = NULL;
- Curl_safefree(conn->allocptr.cookie);
if(data->set.cookie && !checkheaders(data, "Cookie:"))
- conn->allocptr.cookie = aprintf("Cookie: %s\015\012", data->set.cookie);
- else
- conn->allocptr.cookie = NULL;
+ addcookies = data->set.cookie;
if(!conn->bits.upload_chunky && (httpreq != HTTPREQ_GET)) {
/* not a chunky transfer yet, but data is to be sent */
"%s" /* userpwd */
"%s" /* range */
"%s" /* user agent */
- "%s" /* cookie */
"%s" /* host */
"%s" /* pragma */
"%s" /* accept */
conn->allocptr.rangeline:"",
(data->set.useragent && *data->set.useragent && conn->allocptr.uagent)?
conn->allocptr.uagent:"",
- (conn->allocptr.cookie?conn->allocptr.cookie:""), /* Cookie: <data> */
(conn->allocptr.host?conn->allocptr.host:""), /* Host: host */
http->p_pragma?http->p_pragma:"",
http->p_accept?http->p_accept:"",
if(result)
return result;
- if(data->cookies) {
- struct Cookie *co; /* no cookies from start */
-
- Curl_share_lock(data, CURL_LOCK_DATA_COOKIE, CURL_LOCK_ACCESS_SINGLE);
- co = Curl_cookie_getlist(data->cookies,
- conn->allocptr.cookiehost?
- conn->allocptr.cookiehost:host, ppath,
- (bool)(conn->protocol&PROT_HTTPS?TRUE:FALSE));
- Curl_share_unlock(data, CURL_LOCK_DATA_COOKIE);
-
+ if(data->cookies || addcookies) {
+ struct Cookie *co=NULL; /* no cookies from start */
+ int count=0;
+
+ if(data->cookies) {
+ Curl_share_lock(data, CURL_LOCK_DATA_COOKIE, CURL_LOCK_ACCESS_SINGLE);
+ co = Curl_cookie_getlist(data->cookies,
+ conn->allocptr.cookiehost?
+ conn->allocptr.cookiehost:host, ppath,
+ (bool)(conn->protocol&PROT_HTTPS?TRUE:FALSE));
+ Curl_share_unlock(data, CURL_LOCK_DATA_COOKIE);
+ }
if(co) {
- int count=0;
struct Cookie *store=co;
/* now loop through all cookies that matched */
while(co) {
}
co = co->next; /* next cookie please */
}
- if(count && (CURLE_OK == result))
- result = add_buffer(req_buffer, "\r\n", 2);
-
Curl_cookie_freelist(store); /* free the cookie list */
}
+ if(addcookies && (CURLE_OK == result)) {
+ if(!count)
+ result = add_bufferf(req_buffer, "Cookie: ");
+ if(CURLE_OK == result) {
+ result = add_bufferf(req_buffer, "%s%s",
+ count?"; ":"",
+ addcookies);
+ count++;
+ }
+ }
+ if(count && (CURLE_OK == result))
+ result = add_buffer(req_buffer, "\r\n", 2);
+
if(result)
return result;
}
--- /dev/null
+# Server-side
+<reply>
+<data>
+HTTP/1.1 200 OK\r
+Content-Length: 4\r
+Connection: close\r
+\r
+boo
+</data>
+</reply>
+
+# Client-side
+<client>
+<server>
+http
+</server>
+ <name>
+HTTP with cookies file and custom added cookie
+ </name>
+ <command>
+http://%HOSTIP:%HOSTPORT/we/want/172 -b log/jar172.txt -b "tool=curl; name=fool"
+</command>
+<file name="log/jar172.txt">
+# Netscape HTTP Cookie File
+# http://www.netscape.com/newsref/std/cookie_spec.html
+# This file was generated by libcurl! Edit at your own risk.
+
+.127.0.0.1 TRUE /silly/ FALSE 0 ismatch this
+.127.0.0.1 TRUE / FALSE 0 partmatch present
+127.0.0.1 FALSE /we/want/ FALSE 1391252187 nodomain value
+</file>
+</client>
+
+# Verify data after the test has been "shot"
+<verify>
+<strip>
+^User-Agent:.*
+</strip>
+<protocol>
+GET /we/want/172 HTTP/1.1\r
+Host: 127.0.0.1:8999\r
+Pragma: no-cache\r
+Accept: */*\r
+Cookie: nodomain=value; partmatch=present; tool=curl; name=fool\r
+\r
+</protocol>
+</verify>