]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
http2: verbose output new MAX_CONCURRENT_STREAMS values
authorDaniel Stenberg <daniel@haxx.se>
Sat, 10 Mar 2018 22:56:21 +0000 (23:56 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 10 Mar 2018 22:56:21 +0000 (23:56 +0100)
... as it is interesting for many users.

lib/http2.c

index d641d94fea552f559da3b2e20f3c400a9b4c2bd8..ec1b7cf91e393c6f3db143be76c184a0c7d25da1 100644 (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) {
         /* 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);
       }
     }