Commit 09a31fab authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

ConnectionExists: call it multi-use instead of pipelining

So that it fits HTTP/2 as well
parent d4f62f6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }