summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-05-23 07:41:52 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-05-23 07:41:52 +0200
commita1b3a95c96adb9624358c26976c5d22adeaab6ed (patch)
tree83b88fb2a883446304293cce602cc72d4ea9f698
parent945919db5b42f40a174598ba73e54b775bf85faf (diff)
downloadcurl-a1b3a95c96adb9624358c26976c5d22adeaab6ed.tar.gz
url: fix declaration of 'pipe' shadows a global declaration
follow-up to 4cdb1be8246c
-rw-r--r--lib/url.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/lib/url.c b/lib/url.c
index 8e470b0e1..d8b6e46fe 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -3431,7 +3431,7 @@ ConnectionExists(struct Curl_easy *data,
struct connectdata *check;
struct connectdata *chosen = 0;
bool foundPendingCandidate = FALSE;
- int pipe = IsPipeliningPossible(data, needle);
+ int canpipe = IsPipeliningPossible(data, needle);
struct connectbundle *bundle;
#ifdef USE_NTLM
@@ -3448,8 +3448,9 @@ ConnectionExists(struct Curl_easy *data,
*waitpipe = FALSE;
/* We can't pipeline if the site is blacklisted */
- if((pipe & CURLPIPE_HTTP1) && Curl_pipeline_site_blacklisted(data, needle))
- pipe &= ~ CURLPIPE_HTTP1;
+ if((canpipe & CURLPIPE_HTTP1) &&
+ Curl_pipeline_site_blacklisted(data, needle))
+ canpipe &= ~ CURLPIPE_HTTP1;
/* Look up the bundle with all the connections to this
particular host */
@@ -3470,7 +3471,7 @@ ConnectionExists(struct Curl_easy *data,
"can multiplex" : "serially")));
/* We can't pipeline if we don't know anything about the server */
- if(pipe) {
+ if(canpipe) {
if(bundle->multiuse <= BUNDLE_UNKNOWN) {
if((bundle->multiuse == BUNDLE_UNKNOWN) && data->set.pipewait) {
infof(data, "Server doesn't support multi-use yet, wait\n");
@@ -3479,18 +3480,18 @@ ConnectionExists(struct Curl_easy *data,
}
infof(data, "Server doesn't support multi-use (yet)\n");
- pipe = 0;
+ canpipe = 0;
}
if((bundle->multiuse == BUNDLE_PIPELINING) &&
!Curl_pipeline_wanted(data->multi, CURLPIPE_HTTP1)) {
/* not asked for, switch off */
infof(data, "Could pipeline, but not asked to!\n");
- pipe = 0;
+ canpipe = 0;
}
else if((bundle->multiuse == BUNDLE_MULTIPLEX) &&
!Curl_pipeline_wanted(data->multi, CURLPIPE_MULTIPLEX)) {
infof(data, "Could multiplex, but not asked to!\n");
- pipe = 0;
+ canpipe = 0;
}
}
@@ -3511,7 +3512,7 @@ ConnectionExists(struct Curl_easy *data,
pipeLen = check->send_pipe.size + check->recv_pipe.size;
- if(pipe) {
+ if(canpipe) {
if(check->bits.protoconnstart && check->bits.close)
continue;
@@ -3633,7 +3634,7 @@ ConnectionExists(struct Curl_easy *data,
}
}
- if(!pipe && check->inuse)
+ if(!canpipe && check->inuse)
/* this request can't be pipelined but the checked connection is
already in use so we skip it */
continue;
@@ -3764,7 +3765,7 @@ ConnectionExists(struct Curl_easy *data,
continue;
}
#endif
- if(pipe) {
+ if(canpipe) {
/* We can pipeline if we want to. Let's continue looking for
the optimal connection to use, i.e the shortest pipe that is not
blacklisted. */