From: Daniel Stenberg Date: Sat, 10 Mar 2018 22:56:21 +0000 (+0100) Subject: http2: verbose output new MAX_CONCURRENT_STREAMS values X-Git-Tag: curl-7_59_0~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=019aa722aa82e8642254f3e835992bc425ed3e19;p=thirdparty%2Fcurl.git http2: verbose output new MAX_CONCURRENT_STREAMS values ... as it is interesting for many users. --- diff --git a/lib/http2.c b/lib/http2.c index d641d94fea..ec1b7cf91e 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -542,7 +542,8 @@ static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame, if(max_conn != httpc->settings.max_concurrent_streams) { /* only signal change if the value actually changed */ 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); } }