http2: verbose output new MAX_CONCURRENT_STREAMS values

... as it is interesting for many users.
This commit is contained in:
Daniel Stenberg 2018-03-10 23:56:21 +01:00
parent 8b754c430b
commit 019aa722aa
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -542,7 +542,8 @@ static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame,
if(max_conn != httpc->settings.max_concurrent_streams) { if(max_conn != httpc->settings.max_concurrent_streams) {
/* only signal change if the value actually changed */ /* only signal change if the value actually changed */
infof(conn->data, infof(conn->data,
"Connection state changed (MAX_CONCURRENT_STREAMS updated)!\n"); "Connection state changed (MAX_CONCURRENT_STREAMS == %d)!\n",
httpc->settings.max_concurrent_streams);
Curl_multi_connchanged(conn->data->multi); Curl_multi_connchanged(conn->data->multi);
} }
} }