diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-04-27 12:50:19 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-04-27 22:54:34 +0200 |
commit | 09a31fabe413c1a1630ff86144f5cec5ddafe387 (patch) | |
tree | 1b094040b0d9fa52bbafc470f9cf25ce1b97da18 /lib | |
parent | d4f62f6c5da7bd3861019b3e0ee777be7b6c4f89 (diff) |
ConnectionExists: call it multi-use instead of pipelining
So that it fits HTTP/2 as well
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3096,7 +3096,7 @@ ConnectionExists(struct SessionHandle *data, /* We can't pipe if we don't know anything about the server */ if(canPipeline && !bundle->server_supports_pipelining) { - infof(data, "Server doesn't support pipelining\n"); + infof(data, "Server doesn't support multi-use (yet)\n"); canPipeline = FALSE; } |