aboutsummaryrefslogtreecommitdiff
path: root/lib/multi.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-10-23 20:34:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-10-23 20:34:56 +0000
commite1edd41e1b9357cec2d42762e8ae67e356693941 (patch)
tree7d29d09b12e5bf22eb70fc9adc69a455e0895783 /lib/multi.c
parent13e60c55a1a635ceaaf78aa76a4f08c2bcace16f (diff)
Ravi Pratap provided a major update with pipelining fixes. We also no longer
re-use connections (for pipelining) before the name resolving is done.
Diffstat (limited to 'lib/multi.c')
-rw-r--r--lib/multi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/multi.c b/lib/multi.c
index 6daabd00b..a7cc25562 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -773,7 +773,8 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
return CURLM_BAD_EASY_HANDLE;
if (easy->easy_handle->state.pipe_broke) {
- infof(easy->easy_handle, "Pipe broke: handle 0x%x\n", easy);
+ infof(easy->easy_handle, "Pipe broke: handle 0x%x, url = %s\n",
+ easy, easy->easy_handle->reqdata.path);
if(easy->easy_handle->state.is_in_pipeline) {
/* Head back to the CONNECT state */
multistate(easy, CURLM_STATE_CONNECT);