Skip to content

Commit

Permalink
http2: verbose output new MAX_CONCURRENT_STREAMS values
Browse files Browse the repository at this point in the history
... as it is interesting for many users.
  • Loading branch information
bagder committed Mar 10, 2018
1 parent 8b754c4 commit 019aa72
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/http2.c
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 019aa72

Please sign in to comment.