http2: Clarify 'Using HTTP2' verbose message

- Change phrasing from multi-use to multiplexing since the former may
  not be as well understood.

Before: * Using HTTP2, server supports multi-use

After: * Using HTTP2, server supports multiplexing

Bug: https://github.com/curl/curl/discussions/7255
Reported-by: David Hu

Closes https://github.com/curl/curl/pull/7258
This commit is contained in:
Jay Satiro 2021-06-15 02:28:42 -04:00
parent ce8a38fe80
commit c6cac5a96c

View File

@ -2234,7 +2234,7 @@ CURLcode Curl_http2_setup(struct Curl_easy *data,
return result;
}
infof(data, "Using HTTP2, server supports multi-use\n");
infof(data, "Using HTTP2, server supports multiplexing\n");
stream->upload_left = 0;
stream->upload_mem = NULL;
stream->upload_len = 0;